{% extends "page.html" %} {% block main %}

Authorization area

{% if ask_email %}{% endif %} {% for user in users %} {% if user.is_authorized %} {% if ask_email %}{% endif %} {% else %} {% if ask_email %}{% endif %} {% endif %} {% endfor %}
UsernameEmailHas 2FA? Is authorized?
{{ user.username }}{{ user.email }}{{ user.has_2fa }} Yes Unauthorize Change password
{{ user.username }}{{ user.email }}{{ user.has_2fa }} No Authorize Change password Discard
{% endblock %}