master-brain-api / templates /maintenance.html
Dilip8756's picture
Upload 100 files
58c1398 verified
Raw
History Blame Contribute Delete
3.58 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance | Aadhaar Pro</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
:root {
--primary: #4361ee;
--primary-gradient: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
--bg-color: #f8faff;
--text-color: #1e293b;
--text-muted: #64748b;
}
body {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
text-align: center;
}
.maintenance-card {
background: white;
padding: 50px;
border-radius: 30px;
box-shadow: 0 20px 50px rgba(67, 97, 238, 0.1);
max-width: 500px;
width: 90%;
animation: fadeIn 0.8s ease-out;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.icon-wrapper {
width: 100px;
height: 100px;
background: #f0f4ff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 30px;
color: var(--primary);
font-size: 45px;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(67, 97, 238, 0.2); }
70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(67, 97, 238, 0); }
100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(67, 97, 238, 0); }
}
h1 {
margin: 0 0 15px;
font-size: 28px;
font-weight: 700;
}
p {
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 30px;
}
.contact-info {
background: #f8fafc;
padding: 15px;
border-radius: 15px;
border: 1px dashed #cbd5e1;
font-size: 14px;
margin-bottom: 20px;
}
.btn {
display: inline-block;
padding: 12px 30px;
background: var(--primary-gradient);
color: white;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
transition: transform 0.2s;
}
.btn:hover {
transform: translateY(-2px);
}
</style>
</head>
<body>
<div class="maintenance-card">
<div class="icon-wrapper">
<i class="fa-solid fa-screwdriver-wrench"></i>
</div>
<h1>Under Maintenance</h1>
<p>We're currently performing some scheduled updates to improve your experience. We'll be back online shortly!</p>
<div class="contact-info">
<strong>Need urgent help?</strong><br>
Contact us on Support WhatsApp
</div>
<a href="/login" class="btn">ADMIN LOGIN</a>
</div>
</body>
</html>