## -*- coding: utf-8 -*- <%inherit file="base/root.html"/> <%block name="title"> ${_('Password Reset')} <%block name="js_extra"> %if c.captcha_active: %endif <%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(url('password_reset'))}
${h.text('email', class_='form-control')}
%if c.captcha_active:
%endif
${h.submit('send',_('Send Password Reset Email'),class_="btn btn-default")}
${_('A password reset link will be sent to the specified email address if it is registered in the system.')}
${h.end_form()}