Files
shynet/shynet/dashboard/templates/account/password_reset_done.html
2020-04-14 10:31:13 -04:00

16 lines
518 B
HTML

{% extends "account/base.html" %}
{% load i18n %}
{% load account %}
{% block head_title %}{% trans "Password Reset" %}{% endblock %}
{% block page_title %}{% trans "Password Reset" %}{% endblock %}
{% block card %}
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
<p>{% blocktrans %}We have sent you an email with a password reset link. Please try again if you do not receive it within a few minutes.{% endblocktrans %}</p>
{% endblock %}