21 lines
561 B
HTML
21 lines
561 B
HTML
<!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><br>
|
|
<label>Nachricht:<br>
|
|
<textarea name="nachricht" rows="5" required></textarea>
|
|
</label><br><br>
|
|
<button type="submit">Senden</button>
|
|
</form>
|
|
<a href="{{ url_for('home') }}">Zurück zur Startseite</a>
|
|
</body>
|
|
</html>
|