{% extends 'admin/master.html' %} {% block main %}
id: {{ current_user.id }}
username: {{ current_user.username }}
email: {{ current_user.email }}
tfa_enabled: {{ current_user.tfa_enabled }}
tfa_verified: {{ session.get('tfa_verified', false) }}
{%- if current_user.tfa_enabled and not session.get('tfa_verified', false) %}
{{ _('Verify 2FA. Click') }} {{ _('here') }} {{ _('to proceed.') }}
{%- endif %}
{{ _('Want to change password? Click') }} {{ _('here') }} {{ _('to proceed.') }}
{{ _('Set up 2FA? Click') }} {{ _('here') }} {{ _('to begin.') }}
{{ _('Want to logout? Click') }} {{ _('here') }} {{ _('to proceed.') }}
{% endblock %}