9 lines
272 B
HTML
9 lines
272 B
HTML
{% extends '_base.html' %}
|
|
{% load crispy_forms_tags %}
|
|
|
|
{% block title %}Password Reset Done{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Password Reset</h1>
|
|
<p>We have sent you an e-mail. Please contact us if you do not receive it in a few minutes.</p>
|
|
{% endblock content %}
|