comparison gpp/templates/accounts/password_change.html @ 1:dbd703f7d63a

Initial import of sg101 stuff from private repository.
author gremmie
date Mon, 06 Apr 2009 02:43:12 +0000
parents
children 9a8801fa63d5
comparison
equal deleted inserted replaced
0:900ba3c7b765 1:dbd703f7d63a
1 {% extends 'base.html' %}
2 {% block title %}Change Password{% endblock %}
3 {% block content %}
4 <h2>Change Password</h2>
5 <form method="post" action=".">
6 <table>
7 {{ form.as_table }}
8 <tr><td>&nbsp;</td><td><input type="submit" value="Change Password" />
9 <input type="button" value="Cancel" onclick="history.back(); return true;" /></td></tr>
10 </table>
11 </form>
12 {% endblock %}