gva/gnuviechadmin/templates/account/password_reset_done.html

14 lines
543 B
HTML
Raw Permalink Normal View History

2015-01-17 23:08:41 +01:00
{% extends "account/base.html" %}
{% load account i18n %}
{% block title %}{{ block.super }} - {% translate "Password Reset" %}{% endblock title %}
{% block page_title %}{% translate "Password Reset" %}{% endblock page_title %}
2015-01-17 23:08:41 +01:00
{% block content %}
{% if user.is_authenticated %}
{% include "account/snippets/already_logged_in.html" %}
{% endif %}
<p>{% blocktranslate trimmed %}We have sent you an e-mail. Please contact us if you do not receive it within a few
minutes.{% endblocktranslate %}</p>
2015-01-17 23:08:41 +01:00
{% endblock %}