You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
839 B
27 lines
839 B
{% extends "ovpnconsole/base.html" %} |
|
|
|
{% block title %}Connexion{% endblock %} |
|
|
|
{% block menu_top %} |
|
{% if user.is_authenticated %} |
|
<li><a href="{% url logout %}">Deconnexion</a></li> |
|
{% else %} |
|
<li><a href="{% url login %}">Connexion</a></li> |
|
{% endif %} |
|
{% endblock %} |
|
|
|
{% block menu %} |
|
{% if user.is_authenticated %} |
|
<li><a href="{% url logout %}">Deconnexion</a></li> |
|
{% else %} |
|
<li><a href="{% url login %}">Deconnexion</a></li> |
|
{% endif %} |
|
<a href={{ from_url }}>Retour</a> |
|
{% endblock %} |
|
|
|
{% block contenu %} |
|
<h2> Accès non autorisé </h2> |
|
<p>Vous ne disposez pas des droits nécessaires pour effectuer cette opération.</p> |
|
<a href={{ from_url }}>Retour</a> |
|
<a href="{% url index %}">Accueil</a> |
|
{% endblock %}
|
|
|