Form.html gebaut, Blöcke ausgelagert

This commit is contained in:
2024-01-13 16:19:52 +01:00
parent f3202c7235
commit a1ee5f3ea0
4 changed files with 33 additions and 17 deletions

18
templates/form.html Normal file
View File

@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block title %}
Title: Form
{% endblock %}
{% block content %}
<input type="radio" class="btn-check" name="options-base" id="option5" autocomplete="off" checked>
<label class="btn" for="option5">Fuck yes!</label>
<input type="radio" class="btn-check" name="options-base" id="option6" autocomplete="off">
<label class="btn" for="option6">Fuck no!</label>
<input type="radio" class="btn-check" name="options-base" id="option7" autocomplete="off">
<label class="btn" for="option7">Fuck you!</label>
<button type="button" class="btn btn-primary">Submit</button>
{% endblock %}