Commit | Line | Data |
---|---|---|
6a6650bf OL |
1 | {% extends "base.html" %} |
2 | ||
3 | {% block main %} | |
4 | ||
5 | <h1>Connexion</h1> | |
6 | ||
7 | <form method="post" action="{% url django.contrib.auth.views.login %}">{% csrf_token %} | |
8 | <table> | |
9 | {{ form.as_table }} | |
10 | </table> | |
11 | <input type="submit" value="Se connecter" /> | |
12 | <input type="hidden" name="next" value="{{ next }}" /> | |
13 | </form> | |
14 | ||
15 | {% endblock %} | |
16 |