mirror of
https://github.com/ShaYmez/FreeSTAR-Status-Engine.git
synced 2024-11-23 12:48:39 -05:00
11 lines
308 B
PHP
11 lines
308 B
PHP
<?php
|
|
require("config.php");
|
|
require("template.php");
|
|
Template::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
|
|
Template::render_footer();
|