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 %}