/django/contrib/admin/templates/mako/registration/password_reset_form.html
HTML | 19 lines | 13 code | 6 blank | 0 comment | 0 complexity | 9b073b29243142d055257c07ac6fb796 MD5 | raw file
1<%inherit file="admin/base_site.html"/> 2<%def name="block_breadcrumbs()"><div class="breadcrumbs"><a href="../">${trans('Home')}</a> › ${trans('Password reset')}</div></%def> 3 4<%def name="block_title()">${trans("Password reset")}</%def> 5 6<%def name="block_content()"> 7 8<h1>${trans("Password reset")}</h1> 9 10<p>${trans("Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one.")}</p> 11 12<form action="" method="post">${ csrf_tag(csrf_token) } 13% if form['email'].errors: 14 ${ form['email'].errors } 15% endif 16<p><label for="id_email">${trans('E-mail address:')}</label> ${ form['email'] } <input type="submit" value="${trans('Reset my password')}" /></p> 17</form> 18 19</%def>