{% extends "default.html" %} {% set active_page = "setting" %} {% block title %}Settings{% endblock %} {% block head %} {% endblock %} {% block default_content %}
{{ change_email_form.csrf_token }}
Account Email
This email address is used to log in to SimpleLogin.
If you want to change the mailbox that emails are forwarded to, use the Mailboxes page instead.
{{ 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 }}
{{ change_email_form.csrf_token }} Resend confirmation email
{{ change_email_form.csrf_token }} Cancel email change
{% endif %}
Password
You will receive an email containing instructions on how to change your password.
{{ csrf_form.csrf_token }}
Two Factor Authentication
Secure your account with 2FA, you'll be asked for a code generated through an app when you login.
{% if not current_user.enable_otp %} Setup TOTP {% else %} Disable TOTP {% endif %}
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 %} Manage WebAuthn {% endif %}
{% if connect_with_proton and can_unlink_proton_account %}
Connect with Proton
{% if proton_linked_account != None %}
Your account is currently linked to the Proton account {{ proton_linked_account }}
{{ csrf_form.csrf_token }}
{% else %}
You can connect your Proton and SimpleLogin accounts.
You can then quickly log in to your SimpleLogin account using the Proton one.
If you have Proton Unlimited, Business or Visionary, you can have SimpleLogin premium for free.
Connect with Proton {% endif %}
{% endif %}
SimpleLogin data export
As per GDPR (General Data Protection Regulation) law, you can request a copy of your data which are stored on SimpleLogin. A zip file that contains all information will be sent to your SimpleLogin account address.
{{ csrf_form.csrf_token }}
Account Deletion
If SimpleLogin isn't the right fit for you, you can simply delete your account.
Delete account
{% endblock %} {% block script %} {% endblock %}