-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.maintenance.html
More file actions
48 lines (43 loc) · 1.71 KB
/
index.maintenance.html
File metadata and controls
48 lines (43 loc) · 1.71 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Under Maintenance</title>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Flowbite -->
<link
href="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.css"
rel="stylesheet"
/>
<!-- Font Awesome 6 Pro -->
<link
rel="stylesheet"
href="https://rawcdn.githack.com/dimaslanjaka/Web-Manajemen/0f634f242ff259087c9fe176e8f28ccaebb5c015/css/all.min.css"
/>
</head>
<body class="flex items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-900">
<div class="max-w-lg w-full text-center bg-white dark:bg-gray-800 shadow-lg rounded-2xl p-8">
<div class="flex justify-center mb-6">
<i class="fas fa-tools text-6xl text-yellow-500 animate-bounce"></i>
</div>
<h1 class="text-3xl font-bold text-gray-800 dark:text-gray-100 mb-4">
We’ll be back soon!
</h1>
<p class="text-gray-600 dark:text-gray-300 mb-6">
Sorry for the inconvenience but we’re performing some maintenance at
the moment. We’ll be back online shortly.
</p>
<!-- Flowbite button -->
<a
href="mailto:superuser@webmanajemen.com"
class="inline-flex items-center px-4 py-2 text-white bg-blue-600 hover:bg-blue-700 focus:ring-4 focus:ring-blue-300 font-medium rounded-lg text-sm transition"
>
<i class="fas fa-envelope mr-2"></i> Contact Support
</a>
</div>
<!-- Flowbite JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/flowbite/2.2.1/flowbite.min.js"></script>
</body>
</html>