initial commit
This commit is contained in:
60
static/templates/index.html
Normal file
60
static/templates/index.html
Normal file
@ -0,0 +1,60 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<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=Montserrat:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="../styles/main.css">
|
||||
<script src="../scripts/jquery.min.js"></script>
|
||||
<script src="../scripts/helpPopup.js"></script>
|
||||
<title>Бюро пропусков</title>
|
||||
<style>
|
||||
body {
|
||||
background-color: #EEEFF5;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<h1>Бюро пропусков</h1>
|
||||
<nav>
|
||||
<div class="dropdown">
|
||||
<a class="help-button" onclick="toggleDropdown('dropdownHelp-1')">Техническая поддержка</a>
|
||||
<div id="dropdownHelp-1" class="dropdown-help">
|
||||
<a href="tel:83477527706">8 (34775) 2-77-06</a>
|
||||
<a href="tel:89174023516">8 (917) 402-35-16</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="dropdown">
|
||||
<a class="help-button" onclick="toggleDropdown('dropdownHelp-2')">Инструкции</a>
|
||||
<div id="dropdownHelp-2" class="dropdown-help dropdown-manual">
|
||||
<a href="/docs/manual.pdf" target="_blank">Текст</a>
|
||||
<a href="https://drive.google.com/file/d/1CxrAgr2brQclZqtbbreSUU9tN-jsNTwf/view?usp=sharing" target="_blank">Видео</a>
|
||||
</div>
|
||||
</div>
|
||||
<a href="/signin">Войти</a>
|
||||
<a href="/signup">Зарегистрироваться</a>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<section class="main-content">
|
||||
<h1>Авторизация пользователя</h1>
|
||||
<div class="bg">
|
||||
<span>
|
||||
Для оформления пропусков работников организаций и их автомобилей, необходимо зарегистрировать аккаунт подрядной организации и оставить заявку в личном кабинете.
|
||||
<br><br>
|
||||
После рассмотрения вашей зявки, информация поступит вам в письме на почту.
|
||||
<br><br>
|
||||
Для входа используйте e-mail и пароль, указанные при регистрации.
|
||||
</span>
|
||||
<div class="vertical-line"></div>
|
||||
<div class="buttons">
|
||||
<button onclick="location.href='/signup'">Зарегистрироваться</button>
|
||||
<button onclick="location.href='/signin'">Войти</button>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user