pflaenz.li/pflaenzli/pflaenzli/templates/403.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
1,000 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-pfl-secondary">{% trans "Report error" %}</a>
</div>
{% endblock content %}