gestiojeux/mainsite/templates/403.html
Guillaume Bertholon be99a76829 Simplify header and adapt auth pages style
Having a title in the header is worse than a normal title inside the
page. Restore the border to compensate.
2020-11-22 13:34:01 +01:00

11 lines
487 B
HTML

{% extends "small_page.html" %}
{% block "content" %}
<h1>Accès refusé</h1>
<p>Vous n'avez pas la permission pour consulter cette page.</p>
{% if not user.is_authenticated %}
<p>Cet accès vous est probablement refusé car vous n'êtes actuellement pas connecté·e.
Vous pouvez vous rendre à la page de <a href="{% url "registration:login" %}">connexion</a>.</p>
{% endif %}
<p>Vous pouvez retourner sur la <a href="{% url "mainsite:home" %}">page d'accueil</a>.</p>
{% endblock %}