From b7a8394698754e8a013488310d5a7b4764879551 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Oct 08 2014 12:41:26 +0000 Subject: Add template to used to change the user's password --- diff --git a/progit/templates/login/password_change.html b/progit/templates/login/password_change.html new file mode 100644 index 0000000..a30171b --- /dev/null +++ b/progit/templates/login/password_change.html @@ -0,0 +1,23 @@ +{% extends "master.html" %} +{% from "_formhelper.html" import render_field_in_row %} + +{% block title %}Lost password{% endblock %} +{%block tag %}home{% endblock %} + +{% block content %} +

Lost password?

+ +
+ + {{ render_field_in_row(form.username) }} +
+

+ + + + + {{ form.csrf_token }} +

+
+ +{% endblock %}