mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-04 22:50:15 +02:00
Fix/answer without selected (#104)
* Fix a bug when click clicking next * Disable autocomplete for name
This commit is contained in:
@@ -19,7 +19,8 @@
|
||||
{% else %}
|
||||
{% for answer in question.answers %}
|
||||
<div class="py-1">
|
||||
<input type="radio" class="btn-check" name="answer" id="answer-{{ loop.index0 }}" autocomplete="off"
|
||||
<input required="required" type="radio" class="btn-check" name="answer"
|
||||
id="answer-{{ loop.index0 }}" autocomplete="off"
|
||||
value="{{ answer.id }}">
|
||||
<label class="btn btn-outline-secondary" for="answer-{{ loop.index0 }}">{{ answer.text }}</label>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user