Files
Flask_Webserver/templates/form.html
2024-01-16 14:00:22 +01:00

41 lines
1.5 KiB
HTML

{% extends "base.html" %}
{% block title %}
Title: Form
{% endblock %}
{% block content %}
<center>
<br><br>
<h1>Trauzeugen-Antragsformular gem. Passierschein A38</h1>
<form action='#' method='post'>
<br><br>
<p> Name:</p>
<p><input type='text' name='name' /></p>
<p> Email:</p>
<p><input type='text' name='email' /></p>
<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="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="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="submit" class="btn btn-primary" value='Antrag einreichen'/>
</form>
</center>
{% endblock %}