pflaenz.li/pflaenzli/pflaenzli/templates/403.html
Jannis Portmann 8356902e3a Fix titles
2023-05-18 15:27:41 +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" %}
</h1>
<p class="mb-5 blockquote w-75 m-auto">
{% blocktrans %}Halt! You've reached a forbidden enclave. Access to this hidden sanctuary is restricted, and its secrets are reserved for chosen ones. We apologize for any inconvenience caused by this unattainable allure.Please explore the accessible realms of our botanical wonders while the forbidden gates remain sealed. If you think your worthy, please let your message reach us.{% 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 %}