rDrama/files/templates/errors/patron.html

22 lines
807 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 %}
2022-01-24 21:23:42 +00:00
{% if not (g.webview and v.truecoins < 1) %}
<div class="row justify-content-center">
<div class="col-10 col-md-5">
<div class="text-center px-3 my-8">
<img alt=":#marseymerchant:" loading="lazy" class="mb-2" src="/static/assets/images/emojis/marseymerchant.webp?a=1008">
<h1 class="h5">401 Not Authorized</h1>
2022-02-07 15:07:46 +00:00
<p class="text-muted">This page is only available to {% if SITE_NAME == 'Drama' %}paypigs{% else %}patrons{% endif %}:</p>
2022-01-28 21:06:31 +00:00
<a rel="nofollow noopener noreferrer" href="{{config('GUMROAD_LINK')}}">{{config('GUMROAD_LINK')}}</a>
2022-01-24 21:23:42 +00:00
</div>
</div>
2021-12-14 22:48:37 +00:00
</div>
2022-01-24 21:23:42 +00:00
{% endif %}
2021-07-21 01:12:26 +00:00
{% endblock %}