ddns/templates/flask_user/emails/password_changed_message.txt

13 lines
310 B
Plaintext

{% extends 'flask_user/emails/base_message.txt' %}
{% block message %}
Your password has been changed.
{% if user_manager.enable_forgot_password -%}
If you did not change your password, click the link below to reset it.
{{ url_for('user.forgot_password', _external=True) }}
{% endif -%}
{% endblock %}