20 lines
636 B
HTML
20 lines
636 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Danke für deine Nachricht</title>
|
|
<meta http-equiv="refresh" content="5; url=/">
|
|
<style>
|
|
body { font-family: Arial, sans-serif; line-height: 1.6; text-align: center; padding: 20px; }
|
|
a { color: #007BFF; text-decoration: none; }
|
|
a:hover { text-decoration: underline; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Vielen Dank!</h1>
|
|
<p>Deine Nachricht wurde erfolgreich gesendet. Du wirst in 5 Sekunden weitergeleitet.</p>
|
|
<p><a href="/">Zurück zu Amperion</a></p>
|
|
</body>
|
|
</html>
|
|
|