51 lines
1.9 KiB
PHP
51 lines
1.9 KiB
PHP
<?php
|
|
$currentTheme = \App\Services\ThemeService::getCurrent();
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en" data-theme="<?php echo $currentTheme; ?>">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Under Maintenance - <?php echo htmlspecialchars(get_setting('site_name', 'ApkNusa')); ?></title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
|
|
<link rel="stylesheet" href="/assets/css/custom.css?v=<?php echo time(); ?>">
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
text-align: center;
|
|
background: var(--bg-color);
|
|
color: var(--text-color);
|
|
}
|
|
.maintenance-container {
|
|
max-width: 500px;
|
|
padding: 2rem;
|
|
background: var(--card-bg);
|
|
border-radius: 24px;
|
|
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
|
|
border: 1px solid var(--border-color);
|
|
}
|
|
.icon-wrapper {
|
|
font-size: 5rem;
|
|
color: #10B981;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="maintenance-container">
|
|
<div class="icon-wrapper">
|
|
<i class="bi bi-tools"></i>
|
|
</div>
|
|
<h1 class="fw-bold mb-3">Under Maintenance</h1>
|
|
<p class="text-muted mb-4">We're currently performing some scheduled maintenance. We'll be back shortly. Thank you for your patience!</p>
|
|
<div class="d-flex justify-content-center gap-3">
|
|
<a href="mailto:<?php echo get_setting('contact_email'); ?>" class="btn btn-outline-success rounded-pill px-4">Contact Support</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|