2018-01-02 17:06:12 +01:00
|
|
|
{% extends "allauth_ens/base.html" %}
|
2017-09-16 02:32:42 +02:00
|
|
|
{% load i18n %}
|
|
|
|
|
|
|
|
{% block title %}{% trans "Password Reset" %}{% endblock %}
|
|
|
|
{% block header-title %}{% trans "Password Reset" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<section>
|
|
|
|
<p>
|
|
|
|
{% blocktrans %}
|
|
|
|
Forgotten your password? Enter your e-mail address below, and we'll send
|
|
|
|
you an e-mail allowing you to reset it.
|
|
|
|
{% endblocktrans %}
|
|
|
|
</p>
|
|
|
|
<form action="{% url "account_reset_password" %}" method="post">
|
2018-01-02 17:06:12 +01:00
|
|
|
{% include "allauth_ens/block-form.html" with form=form %}
|
2017-09-16 02:32:42 +02:00
|
|
|
<input type="submit" value="{% trans "Reset Password" %}">
|
|
|
|
</form>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{% endblock %}
|