Kommentar eingerichtet, Format angepasst

This commit is contained in:
2024-01-20 13:50:49 +01:00
parent b7dcaf9faa
commit ec1ebd6a57
5 changed files with 31 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends 'base.html' %}
{% block title %}
Title: Form
@@ -17,25 +17,30 @@
<br><br>
<h5>Glatze vorhanden und entspiegelt?</h5>
<br>
<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='glatze' id='option1' value='yes' autocomplete='off' checked>
<label class='btn' for='option1'>Ja!</label>
<input type="radio" class="btn-check" name="glatze" id="option2" value="no" autocomplete="off">
<label class="btn" for="option2">Nein!</label>
<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="trauzeuge" id="option3" value="fuck yes" autocomplete="off" checked>
<label class="btn" for="option3">Fuck yes!</label>
<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="trauzeuge" id="option4" value="fuck no" autocomplete="off">
<label class="btn" for="option4">Fuck no!</label>
<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="trauzeuge" id="option5" value="fuck you" autocomplete="off">
<label class="btn" for="option5">Fuck you!</label><br><br>
<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>
<br><br>
<p> Kommentar:</p>
<p><input type='text' name='comment' /></p>
<br><br>
<input type="submit" class="btn btn-primary" value='Antrag einreichen'/>
<input type='submit' class='btn btn-primary' value='Antrag einreichen'/>
</form>
</center>
{% endblock %}