{% extends "base.html" %} {% block title %}Вход — Тестирование{% endblock %} {% block content %} {% if ui_variant == 'legacy' %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, msg in messages %} {% if category == 'error' %}{{ msg }}{% endif %} {% endfor %}
{% endif %} {% endwith %}
{% else %}
login

Вход в систему

Используйте логин и пароль. {% if hr_auth_enabled %} Учётка кадровой системы (HR). {% endif %}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, msg in messages %}
{{ msg }}
{% endfor %}
{% endif %} {% endwith %}
{% endif %} {% endblock %}