-
Notifications
You must be signed in to change notification settings - Fork 1
/
under_maintenance.php
61 lines (61 loc) · 1.97 KB
/
under_maintenance.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 @session_start();?>
<?php
require_once('includes/init.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?php print DOMAIN_NAME;?></title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- Le styles -->
<link href="public/css/bootstrap.css" rel="stylesheet">
<link href="public/css/bootstrap.min.css" rel="stylesheet">
<link href="public/css/960_24_col.css" rel="stylesheet">
<link href="public/css/reset.css" rel="stylesheet">
<link href="public/css/style.css" rel="stylesheet">
<link href="public/css/ad.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="public/js/html5.js"></script>
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="public/icons/favicon.ico">
<script src="public/js/jquery.js"></script>
<script src="public/js/bpopup-0.6.0.min.js"></script>
<script src="public/js/functions.js"></script>
<style type="text/css">
.response-waiting {
background:url(public/img/loading_small.gif) no-repeat;
}
.response-success {
background:url(public/img/tick.png) no-repeat;
}
.response-error {
background:url(public/img/cross.png) no-repeat;
}
</style>
</head>
<body>
<div class="container_24" id="container">
<?php require_once('templates/top-nav-bar.php');?>
<?php require_once('templates/header.php');?>
<?php require_once('templates/linkbar.html');?>
<div id="page_body">
<div id="page_topic">
<h1>Site is under maintenance</h1>
</div>
<div id="msg_to_user"> <img src="public/img/site under maintenance.jpg"> </div>
</div>
<!--End of Page body-->
<div class="clear"></div>
<?php require_once('templates/footer.php');?>
</div>
<?php require_once('templates/popup_login.php');?>
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
</body>
</html>