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

12 lines
385 B
HTML

<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 href="/register">Регистрация</a>
</form>