Files
call-center/ui/login/index.html
T

63 lines
2.6 KiB
HTML

<!doctype html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>KonturCC Login</title>
<link rel="icon" href="/operator/assets/favicon.svg" type="image/svg+xml" />
<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=Manrope:wght@500;600;700;800&family=IBM+Plex+Sans:wght@400;500;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/operator/assets/styles.css" />
</head>
<body>
<main class="login-shell">
<section class="panel login-layout login-card reveal">
<div class="login-brand">
<div class="brand-mark">K</div>
<div class="login-brand-copy">
<strong>KonturCC</strong>
<span>Единая точка входа в operator / supervisor / admin shell</span>
</div>
</div>
<section class="page-hero">
<p class="eyebrow">Session</p>
<h1>Авторизация</h1>
<p class="hint">После входа система автоматически переведёт вас в нужный рабочий экран по роли.</p>
</section>
<section class="login-grid">
<div class="row">
<label>Пользователь</label>
<input id="sessionUser" value="admin" />
</div>
<div class="row">
<label>Роль</label>
<select id="sessionRole">
<option value="admin" selected>admin</option>
<option value="supervisor">supervisor</option>
<option value="operator">operator</option>
<option value="analyst">analyst</option>
</select>
</div>
<div class="row">
<label>Пароль</label>
<input id="sessionPassword" type="password" value="admin123" />
</div>
<div class="actions">
<button id="loginBtn" class="btn">Войти</button>
<button id="corporateLoginBtn" class="btn ghost" type="button">Корпоративный вход</button>
<button id="refreshBtn" class="btn ghost" type="button">Обновить всё</button>
</div>
</section>
<p class="hint" id="sessionInfo">Токен: отсутствует</p>
<pre id="loginLog" class="output" style="margin-top: 16px;">Ожидание входа.</pre>
</section>
</main>
<script src="/login/assets/app.js?v=track19-analyst-shell-v1"></script>
</body>
</html>