web/www/403.php
2024-09-12 21:45:40 -05:00

17 lines
946 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?= Template::Header(['title' => 'You Dont Have Permission to View This Page', 'highlight' => '', 'description' => 'You dont have permission to view this page.', 'isErrorPage' => true]) ?>
<main>
<section class="narrow has-hero">
<hgroup>
<h1>You Dont Have Permission to View This Page</h1>
<h2>This is a 403 error.</h2>
</hgroup>
<picture data-caption="The Guard Room. David Teniers II, 1642">
<source srcset="/images/guard-room@2x.avif 2x, /images/guard-room.avif 1x" type="image/avif"/>
<source srcset="/images/guard-room@2x.jpg 2x, /images/guard-room.jpg 1x" type="image/jpg"/>
<img src="/images/guard-room@2x.jpg" alt="Baroque-era guards gather around a table in a room."/>
</picture>
<p>Your account doesnt have permission to view this page.</p>
<p>If you arrived here in error, <a href="/about#editor-in-chief">contact us</a> so that we can fix it.</p>
</section>
</main>
<?= Template::Footer() ?>