templates/registration/password_reset_confirm.html
author anoop
Mon, 08 Mar 2010 18:57:31 +0530
changeset 210 85165597c592
permissions -rw-r--r--
added templates, so as to use pytask interface rather than django default interface.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
210
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     1
{% extends "base.html" %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     2
{% load i18n %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     3
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     4
{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset confirmation' %}</div>{% endblock %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     5
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     6
{% block title %}{% trans 'Password reset' %}{% endblock %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     7
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     8
{% block content %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
     9
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    10
{% if validlink %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    11
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    12
<h1>{% trans 'Enter new password' %}</h1>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    13
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    14
<p>{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}</p>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    15
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    16
<form action="" method="post">
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    17
{{ form.new_password1.errors }}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    18
<p class="aligned wide"><label for="id_new_password1">{% trans 'New password:' %}</label>{{ form.new_password1 }}</p>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    19
{{ form.new_password2.errors }}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    20
<p class="aligned wide"><label for="id_new_password2">{% trans 'Confirm password:' %}</label>{{ form.new_password2 }}</p>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    21
<p><input type="submit" value="{% trans 'Change my password' %}" /></p>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    22
</form>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    23
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    24
{% else %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    25
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    26
<h1>{% trans 'Password reset unsuccessful' %}</h1>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    27
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    28
<p>{% trans "The password reset link was invalid, possibly because it has already been used.  Please request a new password reset." %}</p>
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    29
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    30
{% endif %}
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    31
85165597c592 added templates, so as to use pytask interface rather than django default interface.
anoop
parents:
diff changeset
    32
{% endblock %}