forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/templates/errors/401.html

21 lines
759 B
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "default.html" %}
{% block title %}
<title>401 Not Authorized</title>
{% endblock %}
{% block pagetype %}error-401{% endblock %}
{% block content %}
2021-12-06 21:02:19 +00:00
<div class="col-span-full h-screen flex items-center justify-center">
<div class="md:max-w-xl text-center">
2021-12-12 20:14:30 +00:00
<img loading="lazy" src="/assets/images/emojis/marseydead.webp?v=200" class="w-14 h-14 object-contain mb-4">
2021-12-06 21:02:19 +00:00
<h1 class="h5">401 Not Authorized</h1>
2021-12-06 21:03:24 +00:00
<p class="text-gray-500 mb-3">
2021-12-06 21:02:19 +00:00
What you're trying to do requires an account. I think. The original error message said something about a castle and I hated that.
</p>
<a href="/signup" class="btn btn-gray">Create an account</a>
<a href="/login" class="btn btn-gray">Login</a>
2021-10-15 14:08:27 +00:00
</div>
</div>
2021-07-25 01:08:32 +00:00
{% endblock %}