forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmantis_offline.php.sample
65 lines (52 loc) · 1.35 KB
/
mantis_offline.php.sample
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
62
63
64
65
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>MantisBT</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Refresh" content="600" />
<style type="text/css"> <!--
body {
background-color: white;
}
h1 {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 20px;
text-align: center;
margin: 0;
padding: 5px;
color: black;
background-color: #c8c8e8;
}
p {
font-family: Verdana, Arial, Helvetica, sans-serif;
text-align: left;
margin: 10px;
padding: 0;
}
#box {
padding: 0;
margin-top: 20%;
margin-left: 25%;
margin-right: 25%;
border: 1px solid #777;
background-color: #eee;
}
--> </style>
</head>
<body>
<div id="box">
<h1>MantisBT</h1>
<p>
The MantisBT bug tracker is currently offline for maintenance.
Please check back later to see if MantisBT is online again
or contact your administrator for details.
</p>
<p>
Use your browser's refresh or reload function to try again
in a few minutes.
</p>
</div>
</body>
</html>