20 lines
595 B
HTML
20 lines
595 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>403 Forbidden</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}error-403{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="col-span-full h-screen flex items-center justify-center">
|
|
<div class="md:max-w-xl text-center">
|
|
<img loading="lazy" src="/assets/images/emojis/marseytroll.webp?v=200" class="w-14 h-14 object-contain mb-4">
|
|
<h1 class="h5">403 Forbidden</h1>
|
|
<p class="text-gray-500 mb-3">
|
|
YOU AREN'T WELCOME HERE GO AWAY
|
|
</p>
|
|
<a href="/" class="btn btn-gray">Go to frontpage</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|