-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaintenance-mode.html
49 lines (45 loc) · 1.71 KB
/
maintenance-mode.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance Mode</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 h-screen flex items-center justify-center">
<div class="max-w-md text-center bg-white p-6 rounded-lg shadow-md">
<img
src="https://images.pexels.com/photos/27200179/pexels-photo-27200179/free-photo-of-landscape-of-hill-behind-flowers.jpeg?auto=compress&cs=tinysrgb&w=150&lazy=load"
alt="Maintenance Icon"
class="mx-auto mb-4 rounded-full"
/>
<h1 class="text-2xl font-bold text-gray-800 mb-2">Website Under Maintenance</h1>
<p class="text-gray-600 mb-4">
Our site is currently undergoing some scheduled maintenance. We'll be back online shortly. Thank you for your patience!
</p>
<p class="text-sm text-gray-500 mb-6">
Estimated downtime: <span class="font-semibold text-gray-700">30 minutes to 24 hours</span>.
</p>
<form>
<label for="email" class="block text-gray-700 text-sm mb-2">Get notified when we're back:</label>
<div class="flex items-center">
<input
type="email"
id="email"
placeholder="Enter your email"
class="flex-1 px-4 py-2 border rounded-l-md focus:outline-none focus:ring focus:ring-blue-300"
/>
<button
type="submit"
class="bg-blue-600 text-white px-4 py-2 rounded-r-md hover:bg-blue-700"
>
Notify Me
</button>
</div>
</form>
<p class="mt-6 text-gray-400 text-sm">
<em>We'll keep you updated. Thanks for your support!</em>
</p>
</div>
</body>
</html>