28 lines
508 B
PHP
28 lines
508 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<?php
|
||
|
set_include_path("./../");
|
||
|
include './page-blocks/headers.php';
|
||
|
?>
|
||
|
<title>Athena - Error 403</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<!-- Main Content Begins -->
|
||
|
<?php require "./page-blocks/title-image.php";?>
|
||
|
|
||
|
<h1>You're not allowed to see that!</h1>
|
||
|
|
||
|
<p><a class="actionbutton" href="/">Go back to the homepage</a></p>
|
||
|
|
||
|
<h3>403 - Forbidden</h3>
|
||
|
|
||
|
|
||
|
<!-- Footer -->
|
||
|
<?php include './page-blocks/footer.php';?>
|
||
|
</body>
|
||
|
|
||
|
</html>
|