Files
WebAPP/resources/views/offline.blade.php
Rhino ee89141628 UI-Verbesserungen, PWA-Icons, Branding und Settings-Erweiterung
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>
2026-03-02 23:49:12 +01:00

53 lines
1.8 KiB
PHP
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.
<!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&uuml;fe deine Verbindung und versuche es erneut.
</p>
<button onclick="window.location.reload()">Erneut versuchen</button>
</div>
</body>
</html>