Update text.

This commit is contained in:
george 2022-01-20 18:24:28 +00:00
parent 50122da0fe
commit ab72927a16
No known key found for this signature in database
GPG Key ID: D30164B91DE6EEE3
3 changed files with 7 additions and 7 deletions

View File

@ -179,7 +179,7 @@ def send_invalid_totp_login_email(user, totp_type):
user,
ALERT_INVALID_TOTP_LOGIN,
user.email,
"There was an unsuccessful login on your SimpleLogin account",
"Unsuccessful attempt to login to your SimpleLogin account",
render(
"transactional/invalid-totp-login.txt",
type=totp_type,

View File

@ -1,10 +1,10 @@
{% extends "base.html" %}
{% block content %}
{{ 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>") }}
{{ render_text("There has been an unsuccessful attempt to login to your SimpleLogin account.") }}
{{ render_text("An invalid " ~ type ~ " code was provided <b>but the email and password were correct.</b>") }}
{{ render_text("This request was blocked. However, if this was <b>not</b> you, please <b>change your password immediately.</b>") }}
{{ render_text("This request has been 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.') }}

View File

@ -1,7 +1,7 @@
There has been an unsuccessful login attempt on your SimpleLogin account.
An invalid {{type}} code was provided but the email and password were provided correctly.
There has been an unsuccessful attempt to login to your SimpleLogin account.
An invalid {{type}} code was provided but the email and password were correct.
This request was blocked. However, if this was not you, please change your password immediately.
This request has been blocked. However, if this was not you, please change your password immediately.
{{URL}}/dashboard/setting#change_password
Thanks,