PageRenderTime 30ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/django/contrib/admin/templates/mako/registration/password_reset_form.html

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