pytask/templates/registration/login.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 17 Jan 2011 02:53:11 +0530
changeset 435 1217d808d70f
parent 417 b37e541bf950
permissions -rw-r--r--
Use the new forms tags and fix the styling.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
435
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
     1
{% extends "base.html" %}
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
     2
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
     3
{% load form_helpers %}
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
     4
262
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     5
{% block content %}
435
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
     6
  {% url auth_login as login_url %}
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
     7
  {% as_div_form form "Login Form" csrf_token "Login" login_url %}
1217d808d70f Use the new forms tags and fix the styling.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 417
diff changeset
     8
  <a href="{% url auth_password_reset %}">Forgot password?</a>
262
d152c2211a3a Added templates for login and logout
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
{% endblock %}