2022-01-20 22:18:47 +08:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
2022-01-20 22:23:19 +08:00
|
|
|
{{ render_text("There has been an unsuccessful login attempt on your SimpleLogin account.") }}
|
2022-01-21 00:41:42 +08:00
|
|
|
{{ render_text("An invalid " ~ type ~ " code was provided <b>but the email and password were provided correctly.</b>") }}
|
2022-01-20 22:18:47 +08:00
|
|
|
|
2022-01-20 22:23:19 +08:00
|
|
|
{{ render_text("This request was blocked. However, if this was <b>not</b> you, please <b>change your password immediately.</b>") }}
|
2022-01-20 23:40:28 +08:00
|
|
|
{{ render_button("Change your password", URL ~ "/dashboard/setting#change_password") }}
|
|
|
|
|
2022-01-20 22:18:47 +08:00
|
|
|
{{ render_text('Thanks, <br />SimpleLogin Team.') }}
|
2022-01-20 23:40:28 +08:00
|
|
|
{{ raw_url(URL ~ "/dashboard/setting#change_password") }}
|
2022-01-20 22:18:47 +08:00
|
|
|
{% endblock %}
|