17 lines
321 B
PHP
Executable File
17 lines
321 B
PHP
Executable File
<?php
|
|
include "../include/boot.php";
|
|
|
|
if (!hook("authenticate")) {
|
|
include "../include/authenticate.php";
|
|
}
|
|
|
|
include "../include/header.php";
|
|
?>
|
|
|
|
<div class="BasicsBox">
|
|
<h1><?php echo escape($lang["aboutus"]); ?></h1>
|
|
<p><?php echo escape(text("about")); ?></p>
|
|
</div>
|
|
|
|
<?php
|
|
include "../include/footer.php";
|