Docs: начальная структура проекта

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-02-25 14:59:46 +00:00
commit 1669c12182
56 changed files with 2085 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block title %}Вход — ERP WaterSurf{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-md-4">
<h2>Вход</h2>
<form method="post" action="{% url 'users:login' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit" class="btn btn-primary">Войти</button>
</form>
</div>
</div>
{% endblock %}