files reformatted

for better readability
This commit is contained in:
Tealk
2021-03-18 18:26:03 +01:00
parent e2e4a9620b
commit bf3048baf8
40 changed files with 2079 additions and 2205 deletions
+10 -11
View File
@@ -1,17 +1,16 @@
<?php
<?php
require_once("template.php");
if (!file_exists("config.php"))
{
if (!file_exists("config.php")) {
require_once("install.php");
}else{
require_once("config.php");
} else {
require_once("config.php");
Template::render_header("Page not found");
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>
<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();
}
<?php
Template::render_footer();
}