{% extends 'default.html' %} {% block title %} Setting {% endblock %} {% block default_content %}
{{ form.csrf_token }}

Profile

{{ form.email(class="form-control", value=current_user.email, readonly=pending_email != None) }} {{ render_field_errors(form.email) }} {% if pending_email %}
Pending email change: {{ pending_email }} Resend confirmation email Cancel email change
{% endif %}
{{ 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 not current_user.enable_otp %}

Multi-Factor Authentication

Secure your account with Multi-Factor Authentication. This requires having applications like Google Authenticator, Authy, FreeOTP, etc.
Enable {% 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

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