rDrama/drama/templates/errors/patron.html

22 lines
656 B
HTML
Raw Normal View History

2021-07-23 19:36:56 +00:00
{% extends "default.html" %}
2021-07-23 19:32:20 +00:00
2021-07-23 19:36:56 +00:00
{% block title %}
2021-07-23 19:37:45 +00:00
<title>403 Unauthorized</title>
2021-07-23 19:36:56 +00:00
{% endblock %}
2021-07-23 19:32:20 +00:00
2021-07-23 19:36:56 +00:00
{% block pagetype %}error-405{% endblock %}
2021-07-23 19:32:20 +00:00
2021-07-23 19:36:56 +00:00
{% block content %}
2021-07-23 19:28:25 +00:00
<div class="row justify-content-center">
2021-07-23 19:36:56 +00:00
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
<i class="fad fa-ban text-muted mb-5" style="font-size: 5rem;"></i>
2021-07-23 19:32:20 +00:00
<h1 class="h5">403 Unauthorized</h1>
<p class="text-muted">This page is only available to patrons:</p>
2021-07-23 19:39:17 +00:00
<a href="https://rdrama.gumroad.com/l/tfcvri">https://rdrama.gumroad.com/l/tfcvri</a>
2021-07-23 19:40:33 +00:00
<br>
2021-07-23 19:39:17 +00:00
<a href="https://patreon.com/Aevann">https://patreon.com/Aevann</a>
2021-07-23 19:32:20 +00:00
</div>
</div>
2021-07-23 19:28:25 +00:00
</div>
2021-07-23 19:36:56 +00:00
{% endblock %}