22 lines
781 B
HTML
22 lines
781 B
HTML
{% extends "default.html" %}
|
|
|
|
{% block title %}
|
|
<title>401 Not Authorized</title>
|
|
{% endblock %}
|
|
|
|
{% block pagetype %}error-401{% endblock %}
|
|
|
|
{% block content %}
|
|
{% 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="/e/marseymerchant.webp?v=1008">
|
|
<h1 class="h5">401 Not Authorized</h1>
|
|
<p class="text-muted">This page is only available to {% if SITE_NAME == 'Drama' %}paypigs{% else %}patrons{% endif %}:</p>
|
|
<a rel="nofollow noopener noreferrer" href="{{config('GUMROAD_LINK')}}">{{config('GUMROAD_LINK')}}</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %} |