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 %}
|
2017-08-16 16:46:26 +00:00
|
|
|
|
2019-04-14 04:50:35 +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">
|
|
|
|
{% 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 %}
|
|
|
|
</p>
|
2017-08-16 16:46:26 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
|
2023-03-25 19:57:12 +00:00
|
|
|
<label class="visually-hidden" for="email-input-group">
|
2017-08-16 16:46:26 +00:00
|
|
|
{{ form.email.label }}
|
|
|
|
</label>
|
|
|
|
<div class="input-group mb-3 fade-in">
|
2023-03-25 19:57:12 +00:00
|
|
|
<span class="input-group-text text-muted"><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>
|
|
|
|
|
|
|
|
<button class="btn btn-primary w-100 fade-in" type="submit" name="reset">
|
2019-04-14 04:50:35 +00:00
|
|
|
{% trans "Reset Password" %}
|
2017-08-16 16:46:26 +00:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock %}
|