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