Files
website-v2/templates/account/password_reset_done.html
2024-12-23 14:21:12 -08:00

27 lines
796 B
HTML

{% extends 'base.html' %}
{% load i18n %}
{% load account %}
{% block head_title %}
{% trans 'Password Reset' %}
{% endblock %}
{% block content %}
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
<div class="md:pt-11 md:mt-11 w-full bg-white dark:bg-charcoal mx-auto rounded py-6 px-3">
<div class="md:w-full text-center">
<h1 class="text-3xl">{% trans 'Password Reset' %}</h1>
{% if user.is_authenticated %}
{% include 'account/snippets/already_logged_in.html' %}
{% endif %}
<p>
{% blocktrans %}We have sent you an e-mail. If you have not received it please check your spam folder. Otherwise contact us if you do not receive it in a few minutes.{% endblocktrans %}
</p>
</div>
</div>
</div>
{% endblock %}