Add files via upload

This commit is contained in:
Yamusa85
2026-06-18 20:21:11 +03:00
committed by GitHub
parent e2f9a8ed9f
commit a9091dbc79
9 changed files with 2583 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{% extends "base.html" %}
{% block content %}
<div style="max-width: 400px; margin: 50px auto;">
<h2>Вход</h2>
<form method="POST">
<div style="margin-bottom: 15px;">
<label style="display: block; margin-bottom: 5px;">Логин:</label>
<input type="text" name="username" required
style="width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px;">
</div>
<div style="margin-bottom: 15px;">
<label style="display: block; margin-bottom: 5px;">Пароль:</label>
<input type="password" name="password" required
style="width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px;">
</div>
<button type="submit" class="btn" style="width: 100%;">ВОЙТИ</button>
</form>
<div style="margin-top: 20px; padding: 15px; background: #f8f9fa; border-radius: 5px;">
</div>
</div>
{% endblock %}