fix(ui): обычный form submit без JS submit()

Форма теперь в DOM, кнопка type=submit.
JS только переносит файлы в скрытый input перед отправкой.
Браузер сам делает POST и следует редиректу.
This commit is contained in:
2026-06-15 07:51:14 +04:00
parent 87114d701c
commit 07344482cd
2 changed files with 15 additions and 21 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
"""app.py — Точка входа и сборка слоёв."""
from dotenv import load_dotenv
from flask import Flask, render_template, request, redirect
from flask import Flask, render_template, request, redirect, url_for
import json
import schema