-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaintenance.php
More file actions
39 lines (39 loc) · 1.48 KB
/
Copy pathmaintenance.php
File metadata and controls
39 lines (39 loc) · 1.48 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
<?php
include ("_init.php");
if (!file_exists(ROOT.DIRECTORY_SEPARATOR.'.maintenance')) {
header('Location: index.php', true, 302);
}?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<title>Site Maintenance</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<style type="text/css">
body { text-align: center; padding: 100px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
#wrapper { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
#content p {
line-height: 1.444;
}
@media screen and (max-width: 768px) {
body { text-align: center; padding: 20px; }
h1 { font-size: 30px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
#wrapper { display: block; text-align: left; width: 100%; margin: 0 auto; }
}
</style>
</head>
<body>
<section id="wrapper">
<h1>Resetting, Please wait...</h1>
<div id="content">
<p>System will reset Sultan POS data to default. Please, keep patience a bit. We are coming back in live soon!</p>
<p>— <a target="_blink" href="https://sultans.group" title="Sultan Technologies">Sultan Technologies</a></p>
</div>
</section>
</body>
</html>