blob: f80b6e7a67a3e1dd91fa5f684a58aff7b0ea2f21 (
plain)
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
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<html>
<head>
<title>
<?= t("Gallery - Maintenance Mode") ?>
</title>
<style>
body {
background: #ccc;
}
form {
border: 1px solid #555;
background: #999;
width: 300px;
}
fieldset {
border: none;
}
fieldset legend {
font-size: 24px;
display: none !important;
padding-left: 0px;
}
ul {
list-style-type: none;
margin-top: 0px;
padding-left: 0px;
bullet-style: none;
}
ul li {
margin-left: 0px;
}
label {
width: 60px;
display: block;
}
</style>
</head>
<body>
<h1>
<?= t("Gallery - Maintenance Mode") ?>
</h1>
<p>
<?= t("This site is currently only accessible by site administrators.") ?>
</p>
<?= user::get_login_form("login/auth_html") ?>
</body>
</html>
|