1
0
Fork 0

* use sha512 passwords

* more robust SQLAlchemy session handling code
 * implemented password change mechanism
This commit is contained in:
Jan Dittberner 2008-06-05 18:25:08 +00:00
parent ade660419c
commit 949e699e25
7 changed files with 99 additions and 28 deletions

View file

@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
<%inherit file="site.mako" />
<h1>Change your password</h1>
${h.form(h.url(action='updatepassword'), method='post')}
Old password: ${h.password_field('oldpassword')}
New password: ${h.password_field('password')}
Confirm new password: ${h.password_field('confirm')}
${h.submit('Change password')}
${h.end_form()}
<%def name="headlines()">
<title>Change your password</title>
</%def>