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,10 +1,10 @@
<html>
<head>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link href='https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css' rel='stylesheet' integrity='sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN' crossorigin='anonymous'>
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% block content %}{% endblock %}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src='https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js' integrity='sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL' crossorigin='anonymous'></script>
</body>
</html>

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 %}

View File

@@ -9,8 +9,8 @@
<br><br>
Um dir die Tipperei zu ersparen und die folgende Frage vorab zu beantworten:
<br><br>
<h5>"WTF... hasch du di wirklich in HTML inkl. CSS und Javascript eingelesen, <br>
dann gelernt des ganze Back-End inkl. automatischem Mail-Versand in Python zu schreiben und final des Ganze auf deinem eigenen Server virtualisiert in am Docker-Container deployed <br><br>... nur für den 2-Minuten-Joke?!"</h5>
<h5>"WTF... hasch du di wirklich in HTML, CSS und Javascript eingelesen, <br>
dann gelernt des ganze Back-End inkl. automatischem Mail-Versand in Python zu schreiben, <br> und final des Ganze auf deinem eigenen Server virtualisiert in am Docker-Container deployed <br><br>... nur für den 2-Minuten-Joke?!"</h5>
<br><br>
<h1>"JA!"</h1>
<br>

View File

@@ -1,4 +1,4 @@
{% extends "base.html" %}
{% extends 'base.html' %}
{% block title %}
Title: Submitted
@@ -9,6 +9,6 @@
<h3>Formular eingereicht!</h3>
Vielen Dank für Ihre Kooperation<br>Sie haben eine automatische Bestätigung per E-Mail erhalten und werden innerhalb der nächsten 18 Werktage von einem unserer Service-Mitarbeiter kontaktiert
<br><br>
<img src="{{url_for('static', filename='spiegelei.jpg')}}" align="middle" />
<img src='{{url_for('static', filename='spiegelei.jpg')}}' align='middle' />
</center>
{% endblock %}