first commit

This commit is contained in:
2026-05-06 13:28:54 +03:00
commit 79768a4fac
13 changed files with 1827 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Вход</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}" />
</head>
<body>
<div class="page auth-page">
<h1>Вход в систему</h1>
{% if error_message %}
<div class="alert alert-error">{{ error_message }}</div>
{% endif %}
<form method="post" class="auth-form">
<label>
Логин
<input type="text" name="username" required />
</label>
<label>
Пароль
<input type="password" name="password" required />
</label>
<button type="submit">Войти</button>
</form>
<p>Нет аккаунта? <a href="{{ url_for('register') }}">Запросить доступ</a></p>
</div>
</body>
</html>