28 lines
1.1 KiB
PHP
Executable File
28 lines
1.1 KiB
PHP
Executable File
<?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>
|