fredboniface.co.uk/error-pages/403.php

36 lines
1007 B
PHP

<!DOCTYPE html>
<?php
include "./php/age.php";
include "./page-blocks/head-content.php";
include "./page-blocks/footer.php";
?>
<html>
<head>
<?php insert_head(); ?>
<title>Access Denied</title>
</head>
<body>
<h1 class="page-title">Access Denied</h1>
<div class="title-image">
<picture>
<source srcset="/images/error-pages/denied.jxl">
<source srcset="/images/error-pages/denied.webp">
<img src="/images/error-pages/denied.png" alt="Denied">
</picture>
</div>
<div class="page-main-content">
<p>
I don't know where you are trying to go, but my server has decided
that you aren't allowed to go there and has given you this error.
</p>
<p>
If you followed a link and got this page then get in touch with the
person who sent you the link. If it was me - I'm sorry, I messed up.
</p>
</div>
<?php insert_footer(); ?>
</body>
</html>