password_reset_form.html 716 B

123456789101112131415161718192021222324
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n %}
  3. {% block breadcrumbs %}
  4. <div class="breadcrumbs">
  5. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  6. &rsaquo; {% trans 'Password reset' %}
  7. </div>
  8. {% endblock %}
  9. {% block title %}{% trans "Password reset" %}{% endblock %}
  10. {% block content %}
  11. <h1>{% trans "Password reset" %}</h1>
  12. <p>{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}</p>
  13. <form action="" method="post">{% csrf_token %}
  14. {{ form.email.errors }}
  15. <p><label for="id_email">{% trans 'Email address:' %}</label> {{ form.email }} <input type="submit" value="{% trans 'Reset my password' %}" /></p>
  16. </form>
  17. {% endblock %}