-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstop.php
More file actions
51 lines (50 loc) · 1.74 KB
/
stop.php
File metadata and controls
51 lines (50 loc) · 1.74 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
<?php
/*
* @author Anakeen
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License
* @package FDL
*/
/**
* Display a message to advert that Dynacase Platform being to be upgraded
*
* @author Anakeen 2002
* @version $Id: stop.php,v 1.4 2007/03/06 18:57:03 eric Exp $
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License
* @package FDL
* @subpackage CORE
*/
header("HTTP/1.0 503 Service Unavailable");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<HEAD>
<TITLE>Dynacase Maintenance</TITLE>
<style>
body { font-family:Trebuchet MS, Helvetica, sans; background-color:#777; padding:0px; margin:0px; color:#444; }
#hello { padding: 60px 40px; }
.title { font-size: 400%; font-weight: bold; text-shadow: 0 1px 1px #fff;}
.content { font-size: 200%; font-weight: bold; text-shadow: 0 1px 1px #fff; }
.message { padding-top:40px ; font-size:120%; color : #FF6600; text-shadow: 0 1px 1px #555; }
td { vertical-align:top;padding:20px;}
</style>
</HEAD>
<body>
<div id="hello">
<table>
<tr><td><img src="Images/maintenance-symbol.png" /></td>
<td>
<div class="title">Dynacase Platform</div>
<div class="content">The open source case management platform.</div>
<div class="message">
<div>The system is currently unavailable due to maintenance works.</div>
<div>Please come back later.</div>
</div>
<div class="message">
<div>Une opération de maintenance est en cours.</div>
<div>Merci de revenir plus tard.</div>
</div>
</td></tr>
</table>
</div>
</BODY>
</HTML>