layerindex-web/templates/registration/password_reset_done.html
Paul Eggleton 047fc704f7 Add some text to the password reset email
What we had before was a little bit terse, so add some reasonable text.

Also mention in the confirmation page that sending an email is
predicated on there actually being an account matching the specified
email address (and we deliberately don't specify whether there is or
not, in order to prevent user enumeration).

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-11-06 13:58:40 +13:00

7 lines
211 B
HTML

{% extends "base.html" %}
{% load i18n %}
{% block content %}
<p>{% trans "If an account exists with the specified email address, an email with password reset instructions has been sent." %}</p>
{% endblock %}