Invertiertes Logo für Admin-Navbar, neue PWA-Icons, Manifest-Updates, Tailwind-Config-Extraktion, Farb-/Namenseinstellungen im Admin-Bereich und diverse Layout-Optimierungen. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
53 lines
1.8 KiB
PHP
53 lines
1.8 KiB
PHP
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Offline – VereinsOS</title>
|
||
<link rel="manifest" href="/manifest.json">
|
||
<meta name="theme-color" content="#1f2937">
|
||
<link rel="icon" href="/images/icon-192x192.png">
|
||
<style>
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
body {
|
||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
min-height: 100vh;
|
||
background: #f3f4f6;
|
||
color: #374151;
|
||
padding: 2rem;
|
||
text-align: center;
|
||
}
|
||
.container { max-width: 400px; }
|
||
.logo { width: 80px; height: 80px; margin: 0 auto 1.5rem; }
|
||
h1 { font-size: 1.5rem; margin-bottom: 0.75rem; color: #1f2937; }
|
||
p { color: #6b7280; line-height: 1.6; margin-bottom: 1.5rem; }
|
||
button {
|
||
background: #1f2937;
|
||
color: white;
|
||
border: none;
|
||
padding: 0.75rem 2rem;
|
||
border-radius: 0.5rem;
|
||
font-size: 1rem;
|
||
cursor: pointer;
|
||
transition: background 0.15s;
|
||
}
|
||
button:hover { background: #374151; }
|
||
button:active { background: #111827; }
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<img src="/images/icon-192x192.png" alt="VereinsOS" class="logo">
|
||
<h1>Keine Internetverbindung</h1>
|
||
<p>
|
||
Die Seite kann gerade nicht geladen werden.
|
||
Bitte prüfe deine Verbindung und versuche es erneut.
|
||
</p>
|
||
<button onclick="window.location.reload()">Erneut versuchen</button>
|
||
</div>
|
||
</body>
|
||
</html>
|