Files
web_auth/login.html
2026-01-19 16:41:30 +03:00

29 lines
1.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="site-alias" content="o7">
<link rel="stylesheet" href="css/auth.css">
<title>Вход</title>
</head>
<body>
<div class="card">
<h2>Вход</h2>
<p class="subtitle">Для доступа к стенду авторизуйтесь</p>
<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>
<button type="submit">Войти</button>
</form>
<div class="helper">Доступ выдается по согласованию с комиссией ПДТК и с ГК ОКР</div>
</div>
<script src="js/auth.js"></script>
</body>
</html>