-
Notifications
You must be signed in to change notification settings - Fork 2
/
400.php
19 lines (16 loc) · 797 Bytes
/
400.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
require("header.php");
// Forcing by: url/%
echo '
<center>
<span style="color: #CC0000; font-size: 50pt; font-weight: lighter;">ERROR 401<br><sub>Bad Request</sub></span>
<br><br><br><br>
<span style="color: #CC0000; font-size: 30pt; font-weight: lighter;">Ein Fehler ist aufgetreten.</span>
<br><br>
<span style="color: #CC0000; font-size: 20pt; font-weight: lighter;">Ihr Browser (oder Proxy) hat eine ungültige Anfrage gesendet, die vom Server nicht beantwortet werden kann.</span>
<br><br><br>
<a href="javascript:history.back()"><button type="button" style="font-size: 18pt;">Zurück zur letzten Seite</button></a>
</center>
';
include("footer.php");
?>