/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
Possible License(s): BSD-3-Clause
- <%inherit file="admin/base_site.html"/>
- <%def name="block_breadcrumbs()"><div class="breadcrumbs"><a href="../">${trans('Home')}</a> › ${trans('Password reset')}</div></%def>
- <%def name="block_title()">${trans("Password reset")}</%def>
- <%def name="block_content()">
- <h1>${trans("Password reset")}</h1>
- <p>${trans("Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one.")}</p>
- <form action="" method="post">${ csrf_tag(csrf_token) }
- % if form['email'].errors:
- ${ form['email'].errors }
- % endif
- <p><label for="id_email">${trans('E-mail address:')}</label> ${ form['email'] } <input type="submit" value="${trans('Reset my password')}" /></p>
- </form>
- </%def>