Initial commit

This commit is contained in:
2025-09-04 11:27:16 +03:00
commit c1a75f783a
29 changed files with 2153 additions and 0 deletions

18
templates/login.html Normal file
View File

@@ -0,0 +1,18 @@
{% extends "layout.html" %}
{% block content %}
<div class="container mt-4">
<h2>Вход</h2>
<form method="POST">
<div class="mb-3">
<label class="form-label">Имя пользователя</label>
<input type="text" name="username" class="form-control" required>
</div>
<div class="mb-3">
<label class="form-label">Пароль</label>
<input type="password" name="password" class="form-control" required>
</div>
<button type="submit" class="btn btn-primary">Войти</button>
<a href="{{ url_for('register') }}" class="btn btn-link">Регистрация</a>
</form>
</div>
{% endblock %}