2017-08-16 16:46:26 +00:00
|
|
|
{% extends "registration/base.html" %}
|
2019-04-14 04:50:35 +00:00
|
|
|
{% load i18n %}
|
2024-02-06 13:35:36 +00:00
|
|
|
{% block title %}
|
|
|
|
{% trans "Reset Email Sent" %}
|
|
|
|
{% endblock %}
|
2017-08-16 16:46:26 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="text-center mb-0">
|
2020-01-24 04:00:32 +00:00
|
|
|
<p>
|
2024-02-06 13:35:36 +00:00
|
|
|
{% blocktrans trimmed %}
|
|
|
|
We've emailed you instructions for setting your
|
|
|
|
password, if an account exists with the email you entered. You
|
|
|
|
should receive them shortly.
|
|
|
|
{% endblocktrans %}
|
2020-01-24 04:00:32 +00:00
|
|
|
</p>
|
|
|
|
<p class="mb-0">
|
2024-02-06 13:35:36 +00:00
|
|
|
{% blocktrans trimmed %}
|
|
|
|
If you don't receive an email, please make sure you've entered the
|
|
|
|
address you registered with, and check your spam folder.
|
|
|
|
{% endblocktrans %}
|
2020-01-24 04:00:32 +00:00
|
|
|
</p>
|
2017-08-16 16:46:26 +00:00
|
|
|
</div>
|
2024-02-06 13:35:36 +00:00
|
|
|
{% endblock %}
|