{% extends "base.html" %} {% load bootstrap3 %} {# Tweak columns layout for login box %} {% block panels %}
{% endblock %} {% block page_header %}

ALSA - Projet Maraude

Description de la maraude...

{% endblock %} {% block content %}

Connexion

{% if user.is_authenticated %}

Bienvenue {{ user.first_name|default:user.username }} !

{% if next %}

Votre compte ne donne pas accès à cette page. Veuillez vous connecter avec un autre compte.

Déconnexion {% else %}
Entrer {% if user.is_superuser %} Administration {% endif %} Déconnexion
{% endif %} {% else %} {% if next %}

Veuillez vous connecter pour accéder à cette page.

{% endif %}
{% csrf_token %} {% bootstrap_form form %} {% bootstrap_button "Connexion" button_type="submit" button_class="btn-lg btn-primary" %}
{% endif %}
{% endblock %}