tijl.dev-core/web/views/apps/flags/start.html
tijl 4a268ef8c7
All checks were successful
build / build (push) Successful in 32s
release-tag / release-image (push) Successful in 16m25s
basic app implementation
2024-08-26 00:18:45 +02:00

23 lines
842 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>