CampfireAuth/files/html/login.html
2025-03-19 21:59:49 +05:00

28 lines
744 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/css/login.css">
</head>
<body>
<main class="main">
<div class="login">
<h1>Вход</h1>
<form method="POST" action="/login">
<label>Имя пользователя:</label><br>
<input type="text" name="username" required><br>
<label>Пароль:</label><br>
<input type="password" name="password" required><br>
<button type="submit">Войти</button>
<a class="regbutton" href="/register">Регистрация</a>
</form>
</div>
</main>
</body>
</html>