11 lines
292 B
HTML
11 lines
292 B
HTML
|
{% extends "registration/registration_base.html" %}
|
||
|
{% block title %}Password reset{% endblock %}
|
||
|
{% block content %}
|
||
|
<div id="registration">
|
||
|
<p>
|
||
|
We have sent you an email with a link to reset your password. Please check
|
||
|
your email and click the link to continue.
|
||
|
</p>
|
||
|
</div>
|
||
|
{% endblock %}
|