{% extends 'default.html' %} {% set active_page = "setting" %} {% block title %} Settings {% endblock %} {% block default_content %}
{{ change_email_form.csrf_token }}
Email
{{ 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
{{ 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 %}

Multi-Factor Authentication (MFA)

Secure your account with Multi-Factor Authentication. This requires having applications like Google Authenticator, Authy, FreeOTP, etc.
{% if not current_user.enable_otp %} Enable {% else %} Cancel MFA {% 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

Notifications

Do you want to receive our newsletter?
{% if current_user.get_subscription() %}

Billing

Manage your current subscription.
Manage Billing {% endif %}

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 %}