{% extends 'default.html' %} {% set active_page = "setting" %} {% block title %} Settings {% endblock %} {% block head %} {% endblock %} {% block default_content %}
{{ change_email_form.csrf_token }}
Email Address
{{ change_email_form.email(class="form-control", value=current_user.email, readonly=pending_email != None) }} {{ render_field_errors(change_email_form.email) }} {% if pending_email %}
Pending email change: {{ pending_email }} Resend confirmation email Cancel email change
{% endif %}
{{ form.csrf_token }}
Profile
This information will be filled in automatically when you use "Sign in with SimpleLogin" button.
{{ form.name(class="form-control", value=current_user.name) }} {{ render_field_errors(form.name) }}
Profile picture
{{ form.profile_picture(class="form-control-file") }} {{ render_field_errors(form.profile_picture) }} {% if current_user.profile_picture_id %} {% endif %}
{% if current_user.can_use_fido %}
Security Key (WebAuthn)
You can secure your account by linking either your FIDO-supported physical key such as Yubikey, Google Titan, or a device with appropriate hardware to your account.
{% if current_user.fido_uuid is none %} Setup WebAuthn {% else %} Disable WebAuthn {% endif %}
{% endif %}
One-Time Password (TOTP)
Secure your account with One-Time Password.
This requires having applications like Google Authenticator, Authy, MyDigiPassword, etc.
{% if not current_user.enable_otp %} Setup TOTP {% else %} Disable TOTP {% endif %}
Change password
You will receive an email containing instructions on how to change password.
Random Alias
Choose how to create your email alias by default
Newsletters
Every now and then we can send you an email to let you know about a new feature that might be useful to you.
Current Plan
{% if current_user.get_subscription() %} You are on the {{ current_user.get_subscription().plan_name() }} plan.
Manage Subscription {% elif manual_sub %} You are on the Premium plan. The plan ends {{ manual_sub.end_at | dt }} ({{ manual_sub.end_at.format("YYYY-MM-DD") }}). {% if manual_sub.is_giveaway %}
To support SimpleLogin it's possible to change to a paid plan.
Upgrade {% endif %} {% elif current_user.lifetime %} You have the lifetime licence.
To support SimpleLogin it's possible to change to a paid plan.
Upgrade {% elif current_user.in_trial() %} You are in the trial period. The trial ends {{ current_user.trial_end | dt }}. {% else %} You are on the Free plan. {% endif %}
Sender address format
When your alias receives an email, says from John Wick <john@wick.com>, SimpleLogin forwards it to your mailbox.
Due to some email constraints, SimpleLogin cannot keep the sender email address in the original form and needs to transform it to one of the 2 below formats.
Quarantine
When an email sent to your alias is classified as spam or refused by your email provider, it usually means your alias has been leaked to a spammer.
In this case SimpleLogin will keep a copy of this email (so it isn't lost) and notify you so you can take a look at its content and take appropriate actions.
The emails are deleted in 7 days. This is an exceptional case where SimpleLogin stores the email.
See refused emails
Export Data
You can download all aliases you have created on SimpleLogin along with other data.
Delete Account
Please note that this operation is irreversible.
{% endblock %} {% block script %} {% endblock %}