2019-11-20 22:05:37 +01:00
|
|
|
{% extends "base.html" %}
|
2019-11-16 15:08:29 +01:00
|
|
|
|
2019-11-20 22:05:37 +01:00
|
|
|
{% block content %}
|
2020-01-11 22:43:17 +01:00
|
|
|
{{ render_text("Hi " + name) }}
|
2020-02-12 12:13:31 +01:00
|
|
|
{{ render_text("You recently requested to reset your password on SimpleLogin.") }}
|
|
|
|
{{ render_text("Use the button below to reset it. <b>This password reset is only valid for the next hour.</b>") }}
|
2020-02-06 05:37:10 +01:00
|
|
|
{{ render_button("Reset your password", reset_password_link) }}
|
|
|
|
|
2020-02-12 12:13:31 +01:00
|
|
|
{{ render_text("If the button has expired, you can request a new link by following the same process as before.") }}
|
2020-02-06 05:37:10 +01:00
|
|
|
{{ render_text("If you did not request a password reset, no further action is required.") }}
|
2020-02-12 10:35:22 +01:00
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
|
|
|
{{ raw_url(reset_password_link) }}
|
2019-11-20 22:05:37 +01:00
|
|
|
{% endblock %}
|
2019-11-16 15:08:29 +01:00
|
|
|
|