{% 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 %}
Alias import/export
You can import your aliases created on other platforms into SimpleLogin. You can also export your aliases to a readable csv format for a future batch import.
Batch Import Export Aliases
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 %}