intra_max_bot/app/templates/base.html
2026-03-19 16:47:49 +03:00

27 lines
769 B
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ title or "MAX Support" }}</title>
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<header class="topbar">
<div class="brand">MAX Support Bot</div>
{% if username %}
<nav class="menu">
<a href="/applications">Заявки</a>
<a href="/chats">Чаты</a>
<form action="/logout" method="post">
<button type="submit" class="ghost">Выйти ({{ username }})</button>
</form>
</nav>
{% endif %}
</header>
<main class="container">
{% block content %}{% endblock %}
</main>
</body>
</html>