FreeSTAR-Status-Engine/404.php

12 lines
271 B
PHP
Raw Normal View History

2017-11-23 18:09:36 -05:00
<?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();