password_reset_form.html 720 Bytes
Newer Older
1 2 3 4 5
{% extends "registration/base.html" %}
{% load i18n %}
{% load crispy_forms_tags %}
{% get_current_language as LANGUAGE_CODE %}

6
{% block title-page %}{% trans "Password reset" %}{% endblock %}
7

8 9 10 11 12 13 14 15 16 17 18 19 20 21
{% block content_box %}
<div class="row">
  <div class="login-form-errors">
    {% include "display-form-errors.html" %}
  </div>
  <div class="col-sm-12">
    <div class="pull-right"><a href="{% url "accounts.login" %}">{% trans "Back to login" %}</a></div>
    <h4 style="margin: 0 0 25px 0;">
      {% blocktrans %}Enter your email address to reset your password.{% endblocktrans %}
    </h4>
    <form action="" method="POST">
        {% csrf_token %}
        {% crispy form %}
    </form>
22 23 24
  </div>
</div>
{% endblock %}