2019-11-21 05:05:37 +08:00
|
|
|
{% extends "base.html" %}
|
2019-11-16 22:08:29 +08:00
|
|
|
|
2019-11-21 05:05:37 +08:00
|
|
|
{% block content %}
|
2020-01-12 05:43:17 +08:00
|
|
|
{{ render_text("Hi " + name) }}
|
2019-11-21 05:05:37 +08:00
|
|
|
{{ render_text("You have asked to change your password.") }}
|
|
|
|
{{ render_text("To confirm, please click on the button below or use this link " + reset_password_link + " within 1 hour.") }}
|
2020-02-06 12:37:10 +08:00
|
|
|
{{ render_button("Reset your password", reset_password_link) }}
|
|
|
|
|
|
|
|
{{ render_text("If the password token has expired, you can request a new link by following the same process as before.") }}
|
|
|
|
{{ render_text("If you did not request a password reset, no further action is required.") }}
|
2019-11-21 05:05:37 +08:00
|
|
|
{% endblock %}
|
2019-11-16 22:08:29 +08:00
|
|
|
|