pflaenz.li/pflaenzli/pflaenzli/templates/403_csrf.html
Jannis Portmann 27db76cdeb
All checks were successful
continuous-integration/drone/push Build is passing
Add new style
2023-07-08 16:51:07 +02:00

19 lines
996 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% block title %}
{% trans "Forbidden" %}
{% endblock title %}
{% block content %}
<div>
<h1 class="mb-5">
<span class="badge bg-danger">Error 403</span> {% trans "Forbidden" %} ({% trans "CSRF verification failed" %})
</h1>
<p class="mb-5 blockquote w-75 m-auto">
{% blocktrans %}Halt! Only bearers of the CSRF token are allowed past this point. This protective enchantment prevents unauthorized actions and ensures security. Please ensure the validity of your session and attempt again. Should you seek further guidance, our plant mystics stands ready to lend their wisdom and support on your journey.{% endblocktrans %}
</p>
<h2>{% trans "What now?" %}</h2>
<a href="{% url 'index' %}" class="btn btn-pfl">{% trans "Go home" %}</a>
<a href="mailto:contact@pflaenz.li" class="btn btn-pfl-secondary">{% trans "Report error" %}</a>
</div>
{% endblock content %}