This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/templates/main_menu.html
2024-10-22 23:58:45 +03:00

18 lines
484 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Главное меню</title>
</head>
<body>
<h1>Hello World</h1>
<nav class="menu">
{% if 'role' in ses %}
<a href="{{ url_for('logout') }}">Выход</a>
{% else %}
<a href="{{ url_for('auth_bp.auth') }}">Авторизация</a>
{% endif %}
<a href="{{ url_for('requests_bp.requests') }}">Запросы</a>
</nav>
</body>
</html>