<!DOCTYPE html PUBLIC
"-//W3C//DTD HTML 4.01 Transitional//EN"
>
<?php
defined (
'main'
)
or
die
(
'no direct access'
);
$title
=
$allgAr
[
'title'
];
$eMail
=
$allgAr
[
'adminMail'
];
$grund
= bbcode(
$allgAr
[
'wartungs_information'
]);
if
(!is_admin()) {
echo
'<html style=
"margin:0;height:100%;background:url(include/images/wartung_bg.jpg) center #000000 repeat-x;"
>
<body style=
"margin:0;height:100%;font-family:Arial;"
>
<table width=
"100%"
style=
"height:100%;"
border=
"0"
align=
"center"
cellpadding=
"0"
cellspacing=
"0"
>
<tr>
<td valign=
"middle"
align=
"center"
>
<div style=
"height:193px;width:1000px;margin-top:100px;clear:both;"
>
<div style=
"background:url(include/images/wartung_text_bg.png) no-repeat;padding:25px 25px 25px 25px;font-size:12px;text-align:left;color:#ffffff;position:relative;width:479px; height:143px;margin-top:30px;float:left;"
>
<b style=
"font-size:18px;"
>Wartungsmodus</b><br />
<b>Grund für den Wartungsmodus</b><br /><br />
<span style=
"color:#03adfc;"
>
'.$grund.'
</span>
</div>
<div style=
"background:url(include/images/wartung_login_bg.png) no-repeat;position:relative;width:291px; height:193px;margin-top:30px;float:right;"
>
<div style=
"position:absolute;top:25px;left:27px;font-size:12px;font-family:Arial;color:#ffffff;text-align:center;width:75px;"
>Admin Panel</div>
<div style=
"position:absolute;top:48px;left:32px;font-size:10px;color:#888888;"
> Sie sind nicht angemeldet.</div>
<div style=
"position:absolute;top:65px;left:32px;font-size:11px;color:#888888;"
>
<form action=
"index.php?user-login"
method=
"POST"
>
<table width=
"225"
border=
"0"
cellspacing=
"0"
cellpadding=
"0"
style=
"font-size:10px;color:#888888;"
>
<tr><td align=
"center"
>Admin <span style=
"color:#03adfc;"
>Name</span> </td><td align=
"center"
>Admin <span style=
"color:#03adfc;"
>Passwort</span></td></tr>
<tr><td height=
"30"
align=
"center"
><input type=
"text"
style=
"background:url(include/images/wartung_login_input_bg.png) no-repeat;width:90px;height:17px;padding:4px 4px 4px 4px;border:none;font-size:10px;color:#888888;"
tabindex=
"1"
name=
"name"
maxlength=
"15"
/> </td><td align=
"center"
><input type=
"password"
style=
"background:url(include/images/wartung_login_input_bg.png) no-repeat;width:90px;height:17px;padding:4px 4px 4px 4px;border:none;font-size:10px;color:#888888;"
tabindex=
"2"
maxlength=
"20"
name=
"pass"
/></td></tr>
<tr><td align=
"center"
><input type=
"submit"
style=
"background:url(include/images/wartung_access.png) no-repeat;width:54px;height:19px;border:none;"
tabindex=
"3"
value=
""
name=
"user_login_sub"
/></td><td align=
"center"
><a href=
"index.php?user-remind"
><img src=
"include/images/wartung_lost_pw.png"
border=
"0"
alt=
"Lost PW"
/></a></td></tr>
<tr><td align=
"center"
><img src=
"include/images/wartung_access_shadow.png"
border=
"0"
alt=
""
/></td><td align=
"center"
><img src=
"include/images/wartung_lost_pw_shadow.png"
border=
"0"
alt=
""
/></td></tr>
</table>
<input type=
"hidden"
name=
"wdlink"
value=
"admin.php"
/>
</form>
</div>
<div style=
"position:absolute;bottom:26px;left:30px;color:#888888;font-size:9px;"
>Der Login ist nur für Administratoren der Seite gedacht</div>
</div>
</div>
</td>
</tr>
<tr><td align=
"center"
> <div style=
"font-size:10px;width:1000px;text-align:center;color:#ffffff;"
>Copyright &
copy
; by: BlueDesigns.de<br /> CMS by Ilch.de</div>
</td></tr>
</table>
</body>
</html>';
}
else
{
echo
'<html>
<head>
<meta http-equiv=
"content-type"
content=
"text/html;charset=iso-8859-1"
>
<title>Wartungs Arbeiten</title>
</head>
<body bgcolor=
"#ffffff"
>
<div style=
"position:absolute; left: 0px; top: 0px; width:100%; display: block; background-color: #FFFFFF; border: 2px solid #ff0000;"
><b>! ! Diese Seite befindet sich im Wartungsmodus ! ! </b><br> Seite nur für Administratoren sichtbar. <br><a href=
"admin.php?allg"
>Wartungsmodus beenden</a></div>
</body>
</html>';
exit
();
}
?>