forked from ZyntariHQ/Invoisio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
29 lines (29 loc) · 1.39 KB
/
Copy pathoffline.html
File metadata and controls
29 lines (29 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Invoisio — Offline</title>
<link rel="icon" href="/assest/invoisio_logo.svg" />
<style>
body { font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif; margin: 0; padding: 2rem; background: #0b1220; color: #e6e6e6; }
.card { max-width: 680px; margin: 10vh auto; background: #121a2b; border-radius: 16px; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.08); }
h1 { font-size: 1.25rem; margin: 0 0 0.5rem; }
p { margin: 0.5rem 0; color: #b5b5b5; }
.actions { margin-top: 1rem; display: flex; gap: 12px; }
a.button { background: #0ea5e9; color: white; padding: 10px 14px; border-radius: 10px; text-decoration: none; font-weight: 600; }
a.secondary { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: #e6e6e6; }
</style>
</head>
<body>
<div class="card">
<h1>You are offline</h1>
<p>Network connection appears unavailable. Some features may be limited.</p>
<p>When you’re back online, this page will be replaced automatically.</p>
<div class="actions">
<a class="button" href="/">Retry</a>
<a class="button secondary" href="/">Go Home</a>
</div>
</div>
</body>
</html>