Added password change form
This commit is contained in:
parent
a9006bf1bc
commit
5536e764e7
8 changed files with 111 additions and 10 deletions
17
app/templates/change_password.html
Normal file
17
app/templates/change_password.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block body %}
|
||||
<h2>Change Password</h2>
|
||||
|
||||
<form method="POST">
|
||||
<dl>
|
||||
<dt>Old password:</dt>
|
||||
<dd><input type="password" name="old_password"></dd>
|
||||
<dt>New password:</dt>
|
||||
<dd><input type="password" name="new_password"></dd>
|
||||
<dt>New password, again:</dt>
|
||||
<dd><input type="password" name="confirm_password"></dd>
|
||||
<dd><input type="submit" value="Save"></dd>
|
||||
</dl>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue