Forgot to add form

This commit is contained in:
Eskil Heyn Olsen
2013-01-12 14:55:30 -08:00
parent b67e61d625
commit 050ccb847a
2 changed files with 17 additions and 0 deletions
+6
View File
@@ -25,3 +25,9 @@ pip-log.txt
#Mr Developer
.mr.developer.cfg
#Virtualenv
env/
#Editor temporaries
*~
@@ -0,0 +1,11 @@
{% from "security/_macros.html" import render_field_with_errors, render_field %}
{% include "security/_messages.html" %}
<h1>Change password</h1>
<form action="{{ url_for_security('change_password') }}" method="POST" name="change_password_form">
{{ change_password_form.hidden_tag() }}
{{ render_field_with_errors(change_password_form.password) }}
{{ render_field_with_errors(change_password_form.new_password) }}
{{ render_field_with_errors(change_password_form.new_password_confirm) }}
{{ render_field(change_password_form.submit) }}
</form>
{% include "security/_menu.html" %}