mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2024-11-08 12:35:59 -05:00
12 lines
271 B
PHP
12 lines
271 B
PHP
<?php
|
|
require("config.php");
|
|
require("header.php");
|
|
require("footer.php");
|
|
render_header("Page not found");
|
|
?>
|
|
<div class="text-center">
|
|
<h1>Page Not Found</h1>
|
|
<p>Sorry, but the page you were trying to view does not exist.</p>
|
|
</div>
|
|
<?php
|
|
render_footer();
|