File size: 2,045 Bytes
fc06b79 | 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Offline - Contact Management System</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
color: white;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
padding: 20px;
}
.offline-container {
max-width: 500px;
}
.offline-icon {
font-size: 80px;
margin-bottom: 20px;
opacity: 0.8;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
opacity: 0.9;
}
.retry-btn {
background: white;
color: #4CAF50;
border: none;
padding: 12px 30px;
font-size: 1rem;
border-radius: 5px;
cursor: pointer;
font-weight: 600;
transition: transform 0.2s;
}
.retry-btn:hover {
transform: translateY(-2px);
}
.retry-btn:active {
transform: translateY(0);
}
</style>
</head>
<body>
<div class="offline-container">
<div class="offline-icon">📡</div>
<h1>You're Offline</h1>
<p>It looks like you've lost your internet connection. Please check your connection and try again.</p>
<button class="retry-btn" onclick="window.location.reload()">Retry Connection</button>
</div>
</body>
</html>
|