forked from b00skit/MDC-Panel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunavailable.php
More file actions
52 lines (46 loc) · 1.89 KB
/
unavailable.php
File metadata and controls
52 lines (46 loc) · 1.89 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
49
50
51
52
<?php
require_once('includes/initialise.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/svg" href="<?= $g->getSettings('site-favicon') ?>">
<title><?= $g->getSettings('site-name') ?> - MAINTENANCE</title>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta property="og:title" content="<?= $g->getSettings('site-name') ?>">
<meta property="og:type" content="website">
<meta property="og:url" content="<?= $g->getSettings('site-url') ?>">
<meta property="og:image" content="<?= $g->getSettings('site-image') ?>">
<meta property="og:description" content="<?= $g->getSettings('site-description') ?>">
<!-- jQuery 3.5.1 -->
<script src="/js/jquery-3.5.1.min.js"></script>
<!-- Bootstrap 4.5.0 -->
<link href="/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="/css/bootstrap-grid.min.css" rel="stylesheet" type="text/css">
<link href="/css/bootstrap-reboot.min.css" rel="stylesheet" type="text/css">
<!-- Custom Styles -->
<link href="/css/custom.php?v=<?= $g->getSettings('site-version') ?>" rel="stylesheet" type="text/css">
<!-- FontAwesome 5.13.0 -->
<link href="/css/fontawesome.min.css" rel="stylesheet">
<link href="/css/brands.min.css" rel="stylesheet">
<link href="/css/solid.min.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="container mt-5 p-5">
<div class="text-center">
<h1><i class="fas fa-fw fa-5x fa-code-branch"></i></h1>
<h3>WEBSITE TEMPORARILY UNAVAILABLE - MAINTENANCE</h3>
<div class="container my-5">
The MDC Panel is currently under maintenance and will be unavailable until further notice.
<hr>
Questions? Message <strong><?= $g->getSettings('site-discord-contact') ?></strong> on Discord.
</div>
</div>
</div>
</div>
<script src="/js/bootstrap.bundle.min.js"></script>
</body>
</html>