From ade7bd4b74d9ae42c54648cc7390d8c067b5c5e3 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 18 Oct 2012 17:49:57 +0200 Subject: Djangoization - Major refactoring (step 1) --- .../registration/password_reset_confirm.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ishtar_common/templates/registration/password_reset_confirm.html (limited to 'ishtar_common/templates/registration/password_reset_confirm.html') diff --git a/ishtar_common/templates/registration/password_reset_confirm.html b/ishtar_common/templates/registration/password_reset_confirm.html new file mode 100644 index 000000000..b0e2cc142 --- /dev/null +++ b/ishtar_common/templates/registration/password_reset_confirm.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block content %} + +{% if validlink %} +
+
{% csrf_token %} + + {{ form.as_table }} + +
+
+
+{% else %} +
+

{% trans "Password reset failed" %}

+
+{% endif %} + +{% endblock %} -- cgit v1.2.3