ADD ERROR PAGE

This commit is contained in:
Christopher 2020-10-23 14:21:58 +02:00
parent 48d744abf3
commit 7463feb8ef
1 changed files with 2 additions and 3 deletions

View File

@ -1,11 +1,10 @@
<?php
$HTML = new HTML();
//$HTML->importHTML("style/default/error.html");
$HTML->importHTML("style/default/user.html");
$HTML->importHTML("style/default/error.html");
$HTML->setHTMLTitle("Error 404");
$HTML->build();
//header("HTTP/1.0 404 Not Found");
header("HTTP/1.0 404 Not Found");
echo $HTML->ausgabe();
?>