Files
2026-02-09 01:38:39 +01:00

28 lines
1.1 KiB
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
http_response_code(404);
$appBaseUrl = rtrim($GLOBALS['app_base_url'] ?? '', '/');
?>
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Seite nicht gefunden</title>
<style>
body{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;background:#0f172a;color:#e2e8f0;margin:0;min-height:100vh;display:flex;align-items:center;justify-content:center;padding:2rem}
.card{background:#1e293b;border-radius:1rem;padding:2rem;max-width:460px;text-align:center;box-shadow:0 25px 45px rgba(2,6,23,.45);}
h1{margin-top:0;font-size:2rem}
p{color:#cbd5f5}
a{display:inline-flex;margin-top:1.5rem;padding:.6rem 1.4rem;border-radius:.8rem;background:#38bdf8;color:#0f172a;text-decoration:none;font-weight:600}
a:hover{background:#0ea5e9;color:#fff}
</style>
</head>
<body>
<div class="card">
<h1>404 Seite nicht gefunden</h1>
<p>Die angeforderte Seite existiert nicht oder wurde verschoben.</p>
<a href="<?= $appBaseUrl ?: '/' ?>">Zur Übersicht</a>
</div>
</body>
</html>