-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoffline.html
More file actions
36 lines (32 loc) · 993 Bytes
/
Copy pathoffline.html
File metadata and controls
36 lines (32 loc) · 993 Bytes
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
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline | Expense Manager</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
background-color: #f8f9fa;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
.icon {
font-size: 4rem;
color: #6c757d;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<div class="container">
<div class="icon">📡</div>
<h2 class="fw-bold">You are offline</h2>
<p class="text-muted mb-4">Check your internet connection and try again.</p>
<button onclick="window.location.reload()" class="btn btn-primary">Try Again</button>
</div>
</body>
</html>