add blocks

This commit is contained in:
2025-12-17 10:14:13 +02:00
parent 18a31be0b1
commit d78a6bedd5
54 changed files with 2755 additions and 10 deletions

View File

@@ -0,0 +1,17 @@
<div class="form1">
<h1> Вход в систему</h1>
Пожалуйста, введите ваши данные для входа.
<div class="grid-block">
<h3>Форма входа</h3>
<form action="/login" method="post">
<label for="username">Имя пользователя</label>
<input type="text" id="username" name="username" required>
<label for="password">Пароль</label>
<input type="password" id="password" name="password" required>
<button type="submit">Войти</button>
</form>
</div>
</div>