tijl.dev-core/web/views/apps/flags/start.html
tijl d246f5e270
All checks were successful
build / build (push) Successful in 40s
release-tag / release-image (push) Successful in 15m1s
flags
2024-08-26 14:22:24 +02:00

23 lines
841 B
HTML

<div hx-boost="true">
<form method="post">
<input type="text" class="hidden" name="type" value="start" />
<div>
{{range .SupportedTags}}
<label class="cursor-pointer label">
<span class="label-text">{{index $.T .}}</span>
<input name="tags" value="{{.}}" type="checkbox" class="checkbox checkbox-primary" />
</label>
{{end}}
</div>
<!--<label class="cursor-pointer label">
<span class="label-text">Aantal vragen</span>
<input name="tags" value="{{.}}" type="checkbox" class="checkbox checkbox-primary" />
</label>-->
<input value="0" name="max_questions" type="number" class="input input-bordered" />
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>