You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

password_reset_form.html 966B

1234567891011121314151617181920212223242526272829
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n static %}
  3. {% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% static "admin/css/forms.css" %}">{% endblock %}
  4. {% block breadcrumbs %}
  5. <div class="breadcrumbs">
  6. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  7. &rsaquo; {% trans 'Password reset' %}
  8. </div>
  9. {% endblock %}
  10. {% block title %}{{ title }}{% endblock %}
  11. {% block content_title %}<h1>{{ title }}</h1>{% endblock %}
  12. {% block content %}
  13. <p>{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}</p>
  14. <form method="post">{% csrf_token %}
  15. <fieldset class="module aligned">
  16. <div class="form-row field-email">
  17. {{ form.email.errors }}
  18. <label for="id_email">{% trans 'Email address:' %}</label>
  19. {{ form.email }}
  20. </div>
  21. <input type="submit" value="{% trans 'Reset my password' %}">
  22. </fieldset>
  23. </form>
  24. {% endblock %}