Files
web_auth/login.html

16 lines
404 B
HTML
Raw Normal View History

2026-01-19 08:35:00 +03:00
<!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>