rDrama/files/templates/errors/patron.html

20 lines
681 B
HTML
Raw Normal View History

2021-07-25 01:08:32 +00:00
{% extends "default.html" %}
2021-07-21 01:12:26 +00:00
{% block title %}
2021-07-25 14:23:53 +00:00
<title>401 Not Authorized</title>
2021-07-21 01:12:26 +00:00
{% endblock %}
2021-07-25 14:23:53 +00:00
{% block pagetype %}error-401{% endblock %}
2021-07-21 01:12:26 +00:00
{% 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" class="mb-2" src="/assets/images/emojis/marseymerchant.webp">
2021-07-25 14:23:53 +00:00
<h1 class="h5">401 Not Authorized</h1>
2021-10-09 07:22:52 +00:00
<p class="text-muted">This page is only available to {% if "rama" in request.host %}paypigs{% else %}patrons{% endif %}:</p>
2021-09-02 20:33:48 +00:00
<a rel="nofollow noopener noreferrer" href="{{'GUMROAD_LINK' | app_config}}">{{'GUMROAD_LINK' | app_config}}</a>
2021-07-21 01:12:26 +00:00
</div>
</div>
</div>
{% endblock %}