From 7be578615c7555e1f62a7da0634cdcf03b110e63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 6 Mar 2012 16:00:25 +0100 Subject: [PATCH] Add password reset form --- html/registration/password_reset_form.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 html/registration/password_reset_form.html diff --git a/html/registration/password_reset_form.html b/html/registration/password_reset_form.html new file mode 100644 index 000000000..8c40ee9a0 --- /dev/null +++ b/html/registration/password_reset_form.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block content %} + +

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

+ +
{% csrf_token %} +{{ form.as_p }} + +
+ +{% endblock %}