test-area/fomular_bsp_email/templates/contact.html

21 lines
544 B
HTML
Raw Permalink Normal View History

2025-03-29 17:23:45 +01:00
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<title>Kontakt</title>
</head>
<body>
<h1>Kontaktformular</h1>
<form action="{{ url_for('kontakt') }}" method="post">
<label>Name:<br>
<input type="text" name="name" required>
</label><br>
<label>Nachricht:<br>
<textarea name="nachricht" required></textarea>
</label><br>
<button type="submit">Senden</button>
</form>
<a href="{{ url_for('home') }}">Zurück zur Startseite</a>
</body>
</html>