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.

{% extends "base.html" %}


{% load i18n %}
{% load form_helpers %}

{% block breadcrumbs %}<div class="breadcrumbs"><a href="../">{% trans 'Home' %}</a> &rsaquo; {% trans 'Password reset' %}</div>{% endblock %}

{% block title %}{% trans "Password reset" %}{% endblock %}

{% block content %}

<h1>{% trans "Password reset" %}</h1>

<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>

{% as_div_form form "Password Reset Email" csrf_token "Email instructions" %}

{% endblock %}