16 lines
540 B
HTML
16 lines
540 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Reset Email Sent{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="section">
|
|
<div class="container container--narrow">
|
|
<div class="glass-card portal-card fade-in">
|
|
<h1 class="contact-form-title">Check your email</h1>
|
|
<p class="portal-intro">If an account exists for that address, you'll receive password reset instructions shortly.</p>
|
|
<p class="portal-footer-text"><a href="{% url 'accounts:login' %}">Back to login</a></p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{% endblock %}
|