projets
/
auf_django_skin.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
1.1
[auf_django_skin.git]
/
auf
/
django
/
skin
/
templates
/
registration
/
login.html
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