33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Вход — {{ brand }}</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link href="https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500..800&family=Sora:wght@400;500;600&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="/static/css/style.css" />
|
|
</head>
|
|
<body class="login-shell">
|
|
<div class="login-box">
|
|
<h1>{{ brand }} Admin</h1>
|
|
<p class="muted">Создание гостевых ссылок на продление и трафик</p>
|
|
{% if error %}
|
|
<div class="alert-error">{{ error }}</div>
|
|
{% endif %}
|
|
<form method="post" action="/admin/login">
|
|
<label>
|
|
Логин
|
|
<input type="text" name="username" required autocomplete="username" />
|
|
</label>
|
|
<label>
|
|
Пароль
|
|
<input type="password" name="password" required autocomplete="current-password" />
|
|
</label>
|
|
<button class="btn btn-signal" type="submit">Войти</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|