password_reset_form.html 625 B

1234567891011121314151617181920
  1. {% extends "registration/base.html" %}
  2. {% load i18n %}
  3. {% block breadcrumbs %}<div class="breadcrumbs"></div>{% endblock %}
  4. {% block title %}{% trans "Password reset" %}{% endblock %}
  5. {% block content %}
  6. <h1>{% trans "Password reset" %}</h1>
  7. <p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}</p>
  8. <form action="" method="post">
  9. {% csrf_token %}
  10. {{ form.email.errors }}
  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. {% endblock %}