Initial project import: Flask app, templates, init script, README
This commit is contained in:
17
templates/danke.html
Normal file
17
templates/danke.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<!doctype html>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Danke</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Danke für Ihre Anmeldung</h1>
|
||||
{% if adresse %}
|
||||
<p>Vielen Dank, {{ adresse.vorname }} {{ adresse.nachname }}. Ihre Daten wurden gespeichert.</p>
|
||||
<p>Adresse: {{ adresse.strasse }}{% if adresse.hausnummer %} {{ adresse.hausnummer }}{% endif %}, {{ adresse.plz }} {{ adresse.ort }}</p>
|
||||
{% else %}
|
||||
<p>Eintrag gespeichert.</p>
|
||||
{% endif %}
|
||||
<p><a href="/">Zurück zum Formular</a></p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user