transcription/backend/static/login.html
keboss-m 8df14e3102 Add multi-tenant auth with org projects, roles, and personal workspaces.
JWT login, org-scoped storage and RAG, admin/director/user roles, user-owned projects, login UI, and legacy data migration.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-01 18:54:25 +03:00

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>