{% extends "base.html" %} {% set active_page = "user_profile" %} {% block title %}Edit Profile - {{ SITE_NAME }}{% endblock %} {% block dashboard_stat %}

Edit Profile

{% endblock %} {% block content %}

Profile Editor

{% if session['authentication_type'] == 'LOCAL' %}
{% endif %}
{% if session['authentication_type'] == 'LOCAL' %}
{% if not current_user.password %} Your account password is managed via LDAP which isn't supported to change here. {% else %}
{% if 'password' in error_messages %}
{{ error_messages['password'] }}
{% endif %}
{% endif %}
{% endif %}
{% if current_user.otp_secret %}

Your secret key is:

Copied.
You can use Google Authenticator (Android - iOS) or FreeOTP (Android - iOS) on your smartphone to scan the QR code.

Make sure only you can see this QR Code and secret key and nobody can capture them.

{% endif %}
{% endblock %} {% block extrascripts %} {% endblock %}