35 lines
1.4 KiB
HTML
35 lines
1.4 KiB
HTML
<!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> |