pytask/templates/registration/login.html
author Nishanth Amuluru <nishanth@fossee.in>
Sun, 09 Jan 2011 15:09:13 +0530
changeset 364 2763afa1c2a2
parent 307 c6bca38c1cbf
child 417 b37e541bf950
permissions -rw-r--r--
home_page is now in some shape
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
262
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends 'base.html' %}
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     2
{% block content %}
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     3
<form action="/accounts/login/" method="post">
264
8c2376baee94 Added csrf_token and included the urls
Nishanth Amuluru <nishanth@fossee.in>
parents: 262
diff changeset
     4
{% csrf_token %}
262
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
{{ form.as_p }}
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
<input type="submit" value="Login" />
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
</form>
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
<a href="/accounts/password/reset">Forgot password?</a>
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
{% endblock %}