mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 19:37:06 +00:00
21 lines
758 B
HTML
Executable File
21 lines
758 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load account %}
|
|
|
|
{% block head_title %}{% trans "Password Reset" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3 class="h3" id="head_banner">{% trans "Password Reset Email Sent." %}</h3>
|
|
|
|
{% if user.is_authenticated %}
|
|
{% include "account/snippets/already_logged_in.html" %}
|
|
{% block content_extra %} {% endblock %}
|
|
{% else %}
|
|
<p class="forgot_password_info">A password reset link has been sent to your email address. Please contact us if you do not receive it within a few minutes. <br> You will be redirected to <a href="{% url 'account_login' %}">sign in</a> in 5 seconds.</p>
|
|
<script>
|
|
setTimeout("location.href = '{% url 'account_login' %}';",5000);
|
|
</script>
|
|
{% endif %}
|
|
{% endblock %}
|