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.0">
|
||
|
|
<title>Вход — Транскрибация</title>
|
||
|
|
<link rel="stylesheet" href="/static/styles.css">
|
||
|
|
</head>
|
||
|
|
<body class="login-page">
|
||
|
|
<div class="login-card">
|
||
|
|
<h1>🎙️ Transcriba</h1>
|
||
|
|
<p class="login-subtitle">Вход в рабочее пространство организации</p>
|
||
|
|
<form id="loginForm">
|
||
|
|
<label>
|
||
|
|
Организация
|
||
|
|
<input type="text" id="orgSlug" value="merakom" autocomplete="organization" required>
|
||
|
|
</label>
|
||
|
|
<label>
|
||
|
|
Логин
|
||
|
|
<input type="text" id="username" autocomplete="username" required>
|
||
|
|
</label>
|
||
|
|
<label>
|
||
|
|
Пароль
|
||
|
|
<input type="password" id="password" autocomplete="current-password" required>
|
||
|
|
</label>
|
||
|
|
<button type="submit" id="loginBtn">Войти</button>
|
||
|
|
<p class="login-error" id="loginError" hidden></p>
|
||
|
|
</form>
|
||
|
|
</div>
|
||
|
|
<script src="/static/auth.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|