mirror of
https://github.com/fergalmoran/dss.git
synced 2026-01-24 09:44:37 +00:00
17 lines
553 B
HTML
Executable File
17 lines
553 B
HTML
Executable File
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load account_tags %}
|
|
|
|
{% block head_title %}{% trans "Password Reset" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% 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 do not receive it within a few minutes, contact us at <a href="mailto:{{ CONTACT_EMAIL }}">{{ CONTACT_EMAIL }}</a>.{% endblocktrans %}</p>
|
|
{% endblock %}
|