14 lines
396 B
HTML
14 lines
396 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<h1>Password reset requested</h1>
|
|
<p>An email has been sent with a link which will allow you to reset your password.</p>
|
|
<p>
|
|
If you do not receive it, check your spam or junk folders and ensure you typed the email address connected
|
|
with your account.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|
|
|