-
Notifications
You must be signed in to change notification settings - Fork 0
/
offline.php
61 lines (35 loc) · 1.45 KB
/
offline.php
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
53
54
55
56
57
58
59
60
61
<?php
include_once __DIR__ . "/assets/php/app.php" ;
include_once __DIR__ . "/assets/php/connect.php";
if ( chechkSiteVisibilityStatus($dbConn) != 0 )
{
header("location: index.php");
}
$site_titile = getSiteName($dbConn)[0];
include_once "assets/pages/head.php";
?>
<title> CURRENTLY OFFLINE - <?php echo $site_titile ?></title>
</head>
<body>
<div class="container-fluid">
<?php require_once 'assets/pages/navigation.php' ?>
<div class="contents container-fluid">
<div class="page-contents w-100">
<div class="page-not-found-container">
<div class="title text-center">
<h1 class="text-uppercase"> <i class="fas fa-warning text-danger"></i> OUR SERVICES ARE OFFLINE</h1>
<p class="mt-4" > <b class="text-success"><?php echo $site_titile ?></b> is currently offline </p>
<p>Kindly Bear with us . </p>
<p>
<b>Thank You. The Managment.</b>
</p>
</div>
<div class="copy p-4 mt-2" style="display: flex; align-items:center;justify-content:center;font-weight:bolder;font-size: calc(100% + 0.5rem);" >
Copyright © <?php echo date("Y") ?> . <?php echo $site_titile ?>
</div>
</div>
</div>
</div>
</div>
</body>
</html>