added a 404 page

This commit is contained in:
hayden 2019-07-21 23:11:34 -05:00
parent 433ed2c621
commit 78b82c6785
1 changed files with 15 additions and 0 deletions

15
404.php Normal file
View File

@ -0,0 +1,15 @@
<?php
$path = $_SERVER['DOCUMENT_ROOT'];
require_once($path . '/core/header.php');
require_once($path . '/core/footer.php');
display_header('404 - page not found');
?>
<div style="
width: 400px;
margin: auto;
">
<h1>404 - page not found</h1>
<?php
display_footer();
?>