Files
2026-02-19 19:03:20 +00:00

21 lines
730 B
HTML

<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Wedding App</title>
<style>
body { font-family: system-ui, sans-serif; margin: 0; min-height: 100vh; display: grid; place-items: center; background: #f8f6f2; color: #1f1f1f; }
main { text-align: center; padding: 24px; }
a { display: inline-block; margin-top: 12px; padding: 10px 14px; border-radius: 10px; text-decoration: none; background: #274235; color: #fff; }
</style>
</head>
<body>
<main>
<h1>Svenja & Dominic</h1>
<p>Nginx ist erreichbar. Die App läuft im Backend.</p>
<a href="http://127.0.0.1:5000/">Zum Login</a>
</main>
</body>
</html>