-
Notifications
You must be signed in to change notification settings - Fork 5
/
maintenance-mode.php
52 lines (50 loc) · 1.7 KB
/
maintenance-mode.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
<?php
/**
* Community Auth - Maintenance Mode Page
*
* Community Auth is an open source authentication application for CodeIgniter 2.2.2
*
* @package Community Auth
* @author Robert B Gottier
* @copyright Copyright (c) 2011 - 2015, Robert B Gottier. (http://brianswebdesign.com/)
* @license BSD - http://www.opensource.org/licenses/BSD-3-Clause
* @link http://community-auth.com
*/
header('HTTP/1.1 503 Service Temporarily Unavailable');
header('Status: 503 Service Temporarily Unavailable');
header('Retry-After: 7200');
?><!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Site Down For Maintenance</title>
<link href="http://<?php echo $public_root; ?>/css/style.css" media="screen" rel="stylesheet" />
</head>
<body>
<div id="alert-bar"> </div>
<div class="wrapper">
<div id="indicator"> </div>
<div class="width-limiter">
<div id="logo">
<a href="http://<?php echo $public_root; ?>"><img src="http://<?php echo $public_root; ?>/img/logo.jpg" alt="Community Auth"/></a>
</div>
<div id="two-left" class="content">
<h1>Site Down For Maintenance</h1>
<p>
The site is currently down for maintenance, and should be back up shortly. Thank you for your patience.
</p>
</div>
<div id="two-right">
</div>
<div class="push"> </div>
</div>
</div>
<div class="footer">
<p>Copyright (c) 2011 - <?php echo date('Y'); ?> • Robert B. Gottier • <a href="http://brianswebdesign.com">Brian's Web Design - Temecula, CA</a></p>
</div>
</body>
</html>
<?php
/* End of file maintenance-mode.php */
/* Location: /maintenance-mode.php */