{% extends "layouts/base.html" %} {% from "components/ui/card.html" import card, card_header, card_title, card_description, card_content %} {% from "components/ui/button.html" import button_link %} {% block title %}My Profile – {{ app_name }}{% endblock %} {% block content %}
{% call card() %} {% call card_header() %} {% call card_title() %}My Profile{% endcall %} {% call card_description() %}Your account information from your current session.{% endcall %} {% endcall %} {% call card_content() %}

Username

Role

Logto ID

Auth mode

{% endcall %} {% endcall %} {% if logto_configured and not auth_disabled %} {% call card() %} {% call card_header() %} {% call card_title() %}Account Security{% endcall %} {% call card_description() %} Manage your password and multi-factor authentication settings via the Logto account center. {% endcall %} {% endcall %} {% call card_content() %}

Password

Change your password in the Logto account center.

{% call button_link(href='/api/v1/auth/change-password', variant='outline', size='sm') %} Change Password {% endcall %}

Multi-Factor Authentication

Enable, configure, or remove MFA methods such as TOTP authenticator apps and backup codes in your Logto account center.

{% call button_link(href='/api/v1/auth/manage-mfa', variant='outline', size='sm') %} Manage MFA {% endcall %}
{% endcall %} {% endcall %} {% elif auth_disabled %} {% else %} {% endif %}
{% endblock %}