pytask/templates/registration/password_reset_confirm.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 confirmation' %}</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
{% if validlink %}
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
<h1>{% trans 'Enter new password' %}</h1>
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    16
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    17
<p>{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}</p>
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    18
532
1f08247a935c Use the form helpers templatetags instead of hard coding forms.
Madhusudan.C.S <madhusudancs@gmail.com>
parents: 308
diff changeset
    19
{% as_div_form form "Password Change Form" csrf_token "Change password" %}
270
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    20
{% else %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    21
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    22
<h1>{% trans 'Password reset unsuccessful' %}</h1>
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    23
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    24
<p>{% trans "The password reset link was invalid, possibly because it has already been used.  Please request a new password reset." %}</p>
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    25
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    26
{% endif %}
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    27
df56daf2178e Added all the required templates for django-registration
Nishanth Amuluru <nishanth@fossee.in>
parents:
diff changeset
    28
{% endblock %}