Radio-Buttons funktional, Message angepasst

This commit is contained in:
Patrick Hangl
2024-01-16 14:00:22 +01:00
parent 0ac5c6ee91
commit e68658eefc
2 changed files with 14 additions and 7 deletions

View File

@@ -17,24 +17,25 @@
<br><br>
<h5>Glatze vorhanden und entspiegelt?</h5>
<br>
<input type="radio" class="btn-check" name="options-base" id="option1" autocomplete="off" checked>
<input type="radio" class="btn-check" name="glatze" id="option1" value="yes" autocomplete="off" checked>
<label class="btn" for="option1">Ja!</label>
<input type="radio" class="btn-check" name="options-base" id="option2" autocomplete="off">
<input type="radio" class="btn-check" name="glatze" id="option2" value="no" autocomplete="off">
<label class="btn" for="option2">Nein!</label>
<br><br>
<h5>Bock auf ein Trauzeugen-Happening am 20.07.24?</h5>
<br><br>
<input type="radio" class="btn-check" name="options-base2" id="option3" autocomplete="off" checked>
<input type="radio" class="btn-check" name="trauzeuge" id="option3" value="fuck yes" autocomplete="off" checked>
<label class="btn" for="option3">Fuck yes!</label>
<input type="radio" class="btn-check" name="options-base2" id="option4" autocomplete="off">
<input type="radio" class="btn-check" name="trauzeuge" id="option4" value="fuck no" autocomplete="off">
<label class="btn" for="option4">Fuck no!</label>
<input type="radio" class="btn-check" name="options-base2" id="option5" autocomplete="off">
<input type="radio" class="btn-check" name="trauzeuge" id="option5" value="fuck you" autocomplete="off">
<label class="btn" for="option5">Fuck you!</label><br><br>
<p><input type='submit' value='Antrag einreichen' /></p>
<input type="submit" class="btn btn-primary" value='Antrag einreichen'/>
</form>
</center>
{% endblock %}