24 lines
410 B
PHP
24 lines
410 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<?php
|
|
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>
|
|
|
|
</body>
|
|
|
|
</html>
|