18 lines
409 B
HTML
18 lines
409 B
HTML
5 years ago
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<section id="main" class="wrapper">
|
||
|
<div class="container">
|
||
|
<header class="minor">
|
||
|
<h2>Password Reset Sent</h2>
|
||
|
</header>
|
||
|
<section>
|
||
|
<p>Instructions for setting your password have been sent to your email. You should receive it shortly!</p>
|
||
|
<a href="{% url 'home' %}">Go Home</a>
|
||
|
</section>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
{% endblock %}
|