Files
TaoWeb/templates/ok.html
2026-02-01 20:09:11 +09:00

34 lines
1.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>