forked from TobiHatti/DA-WebSite-BadmintonOOE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path403.php
19 lines (16 loc) · 751 Bytes
/
403.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
require("header.php");
//Forced by: e.g. accessing sass/
echo '
<center>
<span style="color: #CC0000; font-size: 50pt; font-weight: lighter;">ERROR 403<br><sub>Forbidden</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;">Sie haben auf die gewünschte Seite keinen zugriff.</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");
?>