w/raw pre-uploader

This commit is contained in:
2026-02-01 20:09:11 +09:00
parent 05088d3934
commit 95b7377781
26 changed files with 3882 additions and 56 deletions

34
templates/ok.html Normal file
View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='imgs/logo.svg') }}">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Onest:wght@100..900&family=Unbounded:wght@200..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='css/errorPages.css' ) }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/fonts.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='css/normalize.css') }}">
<title>Заявка отправлена</title>
</head>
<body>
<div class="wrapper flex">
<div class="container flex a1">
<div class="main-inner flex column text">
<h1 class="flex lightBlue unbounded fontCenter1">Заявка согласована!</h1>
<p class="flex white onest lilText">Вся информация о её статусе будет отправлена по почте на указанный
адрес.</p>
</div>
</div>
</div>
</body>
</html>