pytask/templates/registration/password_reset_form.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Mon, 31 Jan 2011 00:56:24 +0530
changeset 532 1f08247a935c
parent 308 dca28aad6760
permissions -rw-r--r--
Use the form helpers templatetags instead of hard coding forms.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     1
{% extends "base.html" %}
532
1f08247a935c Use the form helpers templatetags instead of hard coding forms.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 308
diff changeset
     2
1f08247a935c Use the form helpers templatetags instead of hard coding forms.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 308
diff changeset
     3
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     4
{% load i18n %}
532
1f08247a935c Use the form helpers templatetags instead of hard coding forms.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 308
diff changeset
     5
{% load form_helpers %}
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     6
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     7
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset' %}</div>{% endblock %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     8
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
     9
{% block title %}{% trans "Password reset" %}{% endblock %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    10
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    11
{% block content %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    12
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    13
<h1>{% trans "Password reset" %}</h1>
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    14
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    15
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    16
532
1f08247a935c Use the form helpers templatetags instead of hard coding forms.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 308
diff changeset
    17
{% as_div_form form "Password Reset Email" csrf_token "Email instructions" %}
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    18
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    19
{% endblock %}