2017-08-16 16:46:26 +00:00
|
|
|
{% extends "registration/base.html" %}
|
2019-04-14 04:50:35 +00:00
|
|
|
{% load i18n static widget_tweaks %}
|
2024-02-06 13:35:36 +00:00
|
|
|
{% block title %}
|
|
|
|
{% trans "Forgot Password" %}
|
|
|
|
{% endblock %}
|
2017-08-16 16:46:26 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="text-center mb-4">
|
2020-01-24 04:00:32 +00:00
|
|
|
<p class="mb-0">
|
2024-02-06 13:35:36 +00:00
|
|
|
{% blocktrans trimmed %}
|
|
|
|
Enter your account email address in the form below. If the address
|
|
|
|
is valid, you will receive instructions for resetting your
|
|
|
|
password.
|
|
|
|
{% endblocktrans %}
|
2020-01-24 04:00:32 +00:00
|
|
|
</p>
|
2017-08-16 16:46:26 +00:00
|
|
|
</div>
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
2024-02-06 13:35:36 +00:00
|
|
|
<label class="visually-hidden" for="email-input-group">{{ form.email.label }}</label>
|
2017-08-16 16:46:26 +00:00
|
|
|
<div class="input-group mb-3 fade-in">
|
2023-07-09 16:26:13 +00:00
|
|
|
<span class="input-group-text text-body-secondary"><i class="icon-mail" aria-hidden="true"></i></span>
|
2017-08-16 16:46:26 +00:00
|
|
|
{% render_field form.email name='email' class+='form-control' id='email-input-group' placeholder=form.email.label %}
|
|
|
|
</div>
|
2024-02-06 13:35:36 +00:00
|
|
|
<button class="btn btn-primary w-100 fade-in" type="submit" name="reset">{% trans "Reset Password" %}</button>
|
2017-08-16 16:46:26 +00:00
|
|
|
</form>
|
2024-02-06 13:35:36 +00:00
|
|
|
{% endblock %}
|