add more precision on what is account email

This commit is contained in:
Son NK 2020-10-20 18:02:52 +02:00
parent 6921ab05fd
commit 14b86749df
1 changed files with 11 additions and 5 deletions

View File

@ -124,7 +124,8 @@
Profile
</div>
<div>
This information will be filled in automatically when you use "Sign in with SimpleLogin" button.
This information will be filled in automatically when you use the
<em>Sign in with SimpleLogin</em> button.
</div>
<div class="form-group mt-3">
<label class="form-label">Name</label>
@ -154,11 +155,16 @@
<div class="card-body">
<div class="card-title">
Email Address
Account Email
</div>
<div class="form-group">
<label class="form-label">Email</label>
<div class="mb-3">
This email address is used to log in to SimpleLogin. <br>
If you want to change the mailbox that emails are forwarded to, use the
<a href="{{ url_for('dashboard.mailbox_route') }}">
<i class="fe fe-inbox"></i> Mailboxes page
</a> instead.
</div>
<div class="form-group mt-2">
<!-- Not allow user to change email if there's a pending change -->
{{ change_email_form.email(class="form-control", value=current_user.email, readonly=pending_email != None) }}
{{ render_field_errors(change_email_form.email) }}