Kommentar eingerichtet, Format angepasst
This commit is contained in:
@@ -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>
|
||||
@@ -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 %}
|
||||
@@ -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>
|
||||
|
||||
@@ -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 %}
|
||||
Reference in New Issue
Block a user