1
0
Fork 0
Manager/pages/error.php

11 lines
296 B
PHP
Raw Normal View History

2020-06-03 15:31:18 +00:00
<?php
$HTML = new HTML();
$HTML->setHTMLTitle("Seite nicht gefunden");
$HTML->importHTML("style/default/dashboard.html");
$HTML->ReplaceLayoutInhalt("%%USERNAME%%", $_SESSION['DISPLAYNAME']);
$HTML->build();
header("HTTP/1.0 404 Not Found");
echo $HTML->ausgabe();
?>