personal-website/docs/www/errors/403.php
2024-05-08 12:57:04 +02:00

17 lines
519 B
PHP

<?php
$COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
include_once($COMMONS."/header.php");
display_header("403: Forbidden");
?>
<article>
<h2>403: Forbidden</h2>
<div class="centered-container">
<img src="https://assets.zdenekborovec.cz/upload/3e0cef92-8dad-4085-9db4-e9c8e1437e0a/c7ec620b-1666-4ab9-ad35-ad3daf1b53b2.png" alt="Internet meme image of a confused-looking cat with a text reading &quot;Hey you... What are you doing here??&quot;">
</div>
</article>
<?php
include_once($COMMONS."/footer.php");
?>