From b94bad829c1fd4b4325a4af280d33d50f164e05f Mon Sep 17 00:00:00 2001 From: 0livd Date: Thu, 26 Oct 2017 19:46:34 +0200 Subject: Use token based auth to reset passwords (#269) Send a mail containing a password reset token link instead of sending a clear text password. Ref #232 --- ihatemoney/templates/reset_password.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 ihatemoney/templates/reset_password.html (limited to 'ihatemoney/templates/reset_password.html') diff --git a/ihatemoney/templates/reset_password.html b/ihatemoney/templates/reset_password.html new file mode 100644 index 0000000..78b5853 --- /dev/null +++ b/ihatemoney/templates/reset_password.html @@ -0,0 +1,12 @@ +{% extends "layout.html" %} + +{% block content %} +{% if error %} +
{{ error }}
+{% else %} +

{{ _("Reset your password") }}

+
+{{ forms.reset_password(form) }} +
+{% endif %} +{% endblock %} -- cgit v1.1