+++ /dev/null
-{% extends "base.html" %}
-{% load i18n %}
-{% load ajaxable_tags %}
-{% load account_tags %}
-
-{% block titleextra %}{% trans "Password Reset" %}{% endblock %}
-
-{% block body %}
-
- <h1>{% trans "Password Reset" %}</h1>
- <p class="normal-text">{% trans "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it." %}</p>
-
- <form method="POST" action="" class="cuteform hidelabels">
- {% csrf_token %}
- <ul>
- {{ password_reset_form|placeholdized_ul }}
- <li><input type="submit" value="{% trans "Reset My Password" %}" /></li>
- </ul>
- </form>
-{% endblock %}