pflaenz.li/pflaenzli/pflaenzli/templates/403_csrf.html
Jannis Portmann 8356902e3a Fix titles
2023-05-18 15:27:41 +02:00

19 lines
992 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-secondary">{% trans "Report error" %}</a>
</div>
{% endblock content %}