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.
25 lines
813 B
25 lines
813 B
{% extends "ovpnconsole/base.html" %} |
|
|
|
{% block title %}Déconnecté{% endblock %} |
|
|
|
{% block menu_top %} |
|
{% if user.is_authenticated %} |
|
<li><a href="{% url admin_page %}">Administration</a></li> |
|
<li><a href="{% url logout %}">Deconnexion</a></li> |
|
{% else %} |
|
<li><a href="/ovpnconsole/">Accueil</a></li> |
|
{% endif %} |
|
{% endblock %} |
|
{% block navigation %} |
|
<i>Deconnecté</i> |
|
{% endblock %} |
|
|
|
{% block menu %} |
|
<a href="{% url ovpnsite_list %}"><img src="{{ MEDIA_URL }}images/back.png" /> Retour à la page d'accueil</a> |
|
{% endblock %} |
|
|
|
{% block contenu %} |
|
<h2> Bienvenue sur OVPNConsole </h2> |
|
<p>Veuillez vous identifier pour accéder à la configuration des sites OpenVPN</p> |
|
<a href="{% url ovpnsite_list %}">Retour à la page d'accueil</a> |
|
{% endblock %}
|
|
|