27 lines
769 B
HTML
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>
|
|
|