## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%block name="title"> ${_('Reset Your Password')}
<%include file="/base/flash_msg.html"/>
${h.form(h.url('reset_password_confirmation'), method='post')}

${_('You are about to set a new password for the email address %s.') % c.email}

${_('Note that you must use the same browser session for this as the one used to request the password reset.')}

${h.hidden('email')} ${h.hidden('timestamp')}
${h.text('token', class_='focus')}
${h.password('password',class_='focus')}
${h.password('password_confirm',class_='focus')}
${h.submit('send',_('Confirm'),class_="btn")}
${h.end_form()}