Files
web_auth/login.html
Jester 55b3d5f088 init
2026-01-19 08:35:00 +03:00

16 lines
404 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Вход</title>
</head>
<body>
<h2>Вход</h2>
<form id="loginForm">
<input type="text" name="username" placeholder="Логин" required>
<input type="password" name="password" placeholder="Пароль" required>
<button type="submit">Войти</button>
</form>
<script src="js/auth.js"></script>
</body>
</html>