Files
web_auth/login.html

29 lines
1.2 KiB
HTML
Raw Normal View History

2026-01-19 08:35:00 +03:00
<!DOCTYPE html>
<html>
<head>
2026-01-19 08:57:58 +03:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2026-01-19 16:41:30 +03:00
<meta name="site-alias" content="o7">
2026-01-19 11:43:37 +03:00
<link rel="stylesheet" href="css/auth.css">
2026-01-19 16:41:30 +03:00
<title>Вход</title>
2026-01-19 08:35:00 +03:00
</head>
<body>
2026-01-19 08:57:58 +03:00
<div class="card">
<h2>Вход</h2>
2026-01-19 16:41:30 +03:00
<p class="subtitle">Для доступа к стенду авторизуйтесь</p>
2026-01-19 08:57:58 +03:00
<form id="loginForm">
<div class="field">
<label for="username">Логин</label>
<input id="username" type="text" name="username" placeholder="Введите логин" required autocomplete="username" autocapitalize="off" spellcheck="false">
</div>
<div class="field">
<label for="password">Пароль</label>
<input id="password" type="password" name="password" placeholder="Введите пароль" required autocomplete="current-password">
</div>
2026-01-19 16:41:30 +03:00
<button type="submit">Войти</button>
2026-01-19 08:57:58 +03:00
</form>
2026-01-19 16:41:30 +03:00
<div class="helper">Доступ выдается по согласованию с комиссией ПДТК и с ГК ОКР</div>
2026-01-19 08:57:58 +03:00
</div>
2026-01-19 08:35:00 +03:00
<script src="js/auth.js"></script>
</body>
</html>