app-MAIL-temp/templates/emails/transactional/invalid-totp-login.html

13 lines
624 B
HTML
Raw Normal View History

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