rDrama/files/templates/errors/401.html

24 lines
758 B
HTML
Raw Normal View History

2021-09-25 23:13:14 +00:00
{% extends "default.html" %}
2021-07-21 01:12:26 +00:00
{% block title %}
<title>401 Not Authorized</title>
{% endblock %}
{% block pagetype %}error-401{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
2021-09-29 15:42:28 +00:00
<img loading="lazy" src="/assets/images/emojis/marseydead.webp">
2021-08-13 00:41:24 +00:00
<pre></pre>
2021-07-21 01:12:26 +00:00
<h1 class="h5">401 Not Authorized</h1>
2021-07-25 01:08:32 +00:00
<p class="text-muted mb-5">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>
2021-07-21 01:12:26 +00:00
<div><a href="/signup" class="btn btn-primary mb-2">Create an account</a></div>
<div><a href="/login" class="text-muted text-small">Or sign in</a></div>
</div>
</div>
</div>
2021-07-25 01:08:32 +00:00
{% endblock %}