12 lines
385 B
HTML
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> |