16 lines
404 B
HTML
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> |