## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%block name="title"> ${_('Reset Your Password')} <%include file="/base/flash_msg.html"/>
%if c.site_name:
${_('Reset Your Password to %s') % c.site_name}
%else:
${_('Reset Your Password')}
%endif
${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', value=c.email)} ${h.hidden('timestamp', value=c.timestamp)}
${h.text('token', value=c.token, class_='form-control')}
${h.password('password',class_='form-control')}
${h.password('password_confirm',class_='form-control')}
${h.submit('send',_('Confirm'),class_="btn btn-default")}
${h.end_form()}