reword some messages, correct typos and spelling mistakes

This commit is contained in:
Tung Nguyen 2020-02-05 12:14:29 +00:00
parent c4562e58d1
commit 89823681ad
4 changed files with 10 additions and 10 deletions

View file

@ -13,11 +13,11 @@
{{ form.csrf_token }}
<div class="card-body p-6">
<div class="card-title">Forgot password</div>
<p class="text-muted">Enter your email address and your will receive an email to reset your password.</p>
<p class="text-muted">Enter your email address you signed up with and you will receive an email to reset your password.</p>
<div class="form-group">
<label class="form-label">Email address</label>
{{ form.email(class="form-control", type="email", placeholder="Enter email") }}
{{ form.email(class="form-control", type="email", placeholder="Your email address associated with your SimpleLogin account") }}
{{ render_field_errors(form.email) }}
</div>

View file

@ -83,12 +83,11 @@
<i class="fa fa-facebook"></i> Sign in with Facebook
</a>
</div>
<div class="text-center p-3" style="font-size: 12px; font-weight: light; margin: auto">
<div class="text-center p-3" style="font-size: 12px; font-weight: lighter; margin: auto">
We don't use the Facebook/Google SDK to avoid their trackers. <br>
However when using a social login button, please keep in mind that this social network will <b>know</b> that
you are using SimpleLogin.
We DO NOT USE Facebook/Google SDK to prevent their trackers from listening to your personal information. <br>
However, when using one of the social login buttons above, please keep in mind that you agree with
this social network on <strong>knowing</strong> you are using SimpleLogin.
<span class="badge badge-warning">Warning</span>

View file

@ -194,7 +194,7 @@ def send_reset_password_email(user):
email_utils.send_reset_password_email(user.email, user.name, reset_password_link)
flash(
"You are going to receive an email containing instruction to change your password",
"You are going to receive an email containing instructions to change your password",
"success",
)

View file

@ -3,7 +3,8 @@
{% block content %}
{{ render_text("Hi " + name) }}
{{ render_text("Thank you for choosing SimpleLogin.") }}
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the button below or use this link " + activation_link + " within 1 hour.") }}
{{ render_button("Verify", activation_link) }}
{{ render_text("To get started, please confirm that <b>" + email + "</b> is your email address by clicking on the
button below or use this link " + activation_link + " within 1 hour.") }}
{{ render_button("Verify email", activation_link) }}
{% endblock %}