You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.1 KiB
102 lines
3.1 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<meta name="theme-color" content="#020617"> |
|
<title>Offline — Geonet Console</title> |
|
<style> |
|
:root { |
|
color-scheme: dark; |
|
--bg: #020617; |
|
--card: #0f172a; |
|
--border: #1e293b; |
|
--text: #f8fafc; |
|
--muted: #94a3b8; |
|
--accent: #22d3ee; |
|
} |
|
@media (prefers-color-scheme: light) { |
|
:root { |
|
color-scheme: light; |
|
--bg: #f1f5f9; |
|
--card: #ffffff; |
|
--border: #e2e8f0; |
|
--text: #0f172a; |
|
--muted: #64748b; |
|
--accent: #0891b2; |
|
} |
|
} |
|
* { box-sizing: border-box; } |
|
body { |
|
margin: 0; |
|
min-height: 100vh; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
padding: 1.5rem; |
|
font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; |
|
background: var(--bg); |
|
color: var(--text); |
|
} |
|
.card { |
|
width: 100%; |
|
max-width: 28rem; |
|
background: var(--card); |
|
border: 1px solid var(--border); |
|
border-radius: 1rem; |
|
padding: 2rem; |
|
text-align: center; |
|
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); |
|
} |
|
.icon { |
|
width: 4rem; |
|
height: 4rem; |
|
margin: 0 auto 1rem; |
|
border-radius: 1rem; |
|
background: linear-gradient(135deg, #06b6d4, #2563eb); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
font-size: 1.75rem; |
|
font-weight: 700; |
|
color: #f8fafc; |
|
} |
|
h1 { |
|
margin: 0 0 0.5rem; |
|
font-size: 1.5rem; |
|
} |
|
p { |
|
margin: 0 0 1.5rem; |
|
color: var(--muted); |
|
line-height: 1.5; |
|
font-size: 0.95rem; |
|
} |
|
button { |
|
appearance: none; |
|
border: none; |
|
border-radius: 0.75rem; |
|
padding: 0.75rem 1.25rem; |
|
font-size: 0.95rem; |
|
font-weight: 600; |
|
cursor: pointer; |
|
background: var(--accent); |
|
color: #020617; |
|
} |
|
button:active { transform: scale(0.98); } |
|
.hint { |
|
margin-top: 1rem; |
|
font-size: 0.8rem; |
|
color: var(--muted); |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
<main class="card"> |
|
<div class="icon" aria-hidden="true">G</div> |
|
<h1>You are offline</h1> |
|
<p>Geonet Console needs a network connection for LDAP, databases, and other live services. Check your connection and try again.</p> |
|
<button type="button" onclick="window.location.reload()">Try again</button> |
|
<p class="hint">Cached pages and static assets may still be available when you reconnect.</p> |
|
</main> |
|
</body> |
|
</html>
|
|
|