33 lines
1.3 KiB
HTML
33 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Вход — ROBO-OPS</title>
|
|
<link rel="stylesheet" href="/static/css/styles.css">
|
|
</head>
|
|
<body data-page="login">
|
|
<div class="auth-page">
|
|
<div class="auth-card">
|
|
<h1>ROBO-OPS</h1>
|
|
<p class="auth-subtitle">Вход в личный кабинет оператора</p>
|
|
<form id="auth-form" class="auth-form">
|
|
<div class="form-field">
|
|
<label for="email">Электронная почта</label>
|
|
<input type="email" id="email" required placeholder="email@example.com">
|
|
</div>
|
|
<div class="form-field">
|
|
<label for="password">Пароль</label>
|
|
<input type="password" id="password" required minlength="6" placeholder="Минимум 6 символов">
|
|
</div>
|
|
<p class="form-error" id="auth-error"></p>
|
|
<button type="submit" class="btn btn--primary btn--block">Войти</button>
|
|
</form>
|
|
<p class="auth-link">Нет аккаунта? <a href="/register">Зарегистрироваться</a></p>
|
|
</div>
|
|
</div>
|
|
<script src="/static/js/api.js"></script>
|
|
<script src="/static/js/auth.js"></script>
|
|
</body>
|
|
</html>
|