diff --git a/flask_security/templates/security/email/change_notice.html b/flask_security/templates/security/email/change_notice.html index fdca72a..d1224cf 100644 --- a/flask_security/templates/security/email/change_notice.html +++ b/flask_security/templates/security/email/change_notice.html @@ -1,4 +1,4 @@
Your password has been changed.
{% if security.recoverable %} -If you did not change your password, click here to reset your password.
+If you did not change your password, click here to reset it.
{% endif %} diff --git a/flask_security/templates/security/email/change_notice.txt b/flask_security/templates/security/email/change_notice.txt index 23b1084..e74bd80 100644 --- a/flask_security/templates/security/email/change_notice.txt +++ b/flask_security/templates/security/email/change_notice.txt @@ -1,5 +1,5 @@ Your password has been changed {% if security.recoverable %} -If you did not change your password, click the link below to reset your password: +If you did not change your password, click the link below to reset it. {{ url_for_security('forgot_password', _external=True) }} {% endif %}