Initial project import: Flask app, templates, init script, README

This commit is contained in:
Albert
2025-11-08 23:25:18 +01:00
commit 4b4a3fb56f
7 changed files with 240 additions and 0 deletions

17
templates/danke.html Normal file
View 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>