63 lines
3.5 KiB
HTML
63 lines
3.5 KiB
HTML
<html lang="ru">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<title>YourHome</title>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<script type="module" src="./node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
||
<link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
|
||
<link href="./node_modules/@fortawesome/fontawesome-free/css/all.min.css" rel="stylesheet"/>
|
||
<link rel="stylesheet" href="./style.css">
|
||
<!--<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">-->
|
||
<link rel="stylesheet" href="./style.css">
|
||
</head>
|
||
<body class="h-100 d-flex flex-column">
|
||
<header class="header1-fluid">
|
||
<nav class="navbar navbar-expand-md navbar-dark">
|
||
<a class="navbar-brand" href="/">
|
||
<i class="fa-solid fa-house-chimney"></i>
|
||
YourHome
|
||
</a>
|
||
<!-- Кнопка, которая поялвяется при узком экране и позволяте развернуть навигационное меню-->
|
||
<button class="navbar-toggler custom-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
|
||
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
||
<span class="navbar-toggler-icon"></span> <!-- Иконка навигационного меню-->>
|
||
</button>
|
||
<div class="navbar-collapse collapse justify-content-end" id="navbarNav">
|
||
<div class="navbar-nav">
|
||
<a class="nav-link active" href="./index.html">Главная</a>
|
||
<a class="nav-link" href="./page2.html">Магазин</a>
|
||
<a class="nav-link" href="./page4.html">О нас</a>
|
||
<a class="nav-link" href="./page3.html">Войти</a>
|
||
<a class="nav-link" href="./page8.html">Администратору</a>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
</header>
|
||
<main class="container-fluid p-2" style="margin: auto;">
|
||
<img class="background-image" src="back1.jpg" alt="Background Image">
|
||
<div class="row justify-content-center">
|
||
<form class="col-md-7 m-0" action="./page3.html" method="get">
|
||
<h3 class="text-center mb-4">Вход</h3>
|
||
<div class="mb-4">
|
||
<label class="form-label" for="phone"></label>
|
||
<input id="phone" name="phone" class="form-control custom-rounded" type="tel" placeholder="Введите номер телефона" required>
|
||
</div>
|
||
<div class="mb-4">
|
||
<label class="form-label" for="password"></label>
|
||
<input id="password" name="password" class="form-control custom-rounded" type="password" placeholder="Введите пароль" required>
|
||
</div>
|
||
<div class="text-center">
|
||
<button class="btn btn-custom custom-rounded w-40" type="submit" onclick="location.href='./page6.html'">Отправить</button>
|
||
</div>
|
||
<div class="text-center mt-5">
|
||
<p>Еще не зарегистрированы? <a href="./page7.html">Авторизуйтесь</a></p>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
</main>
|
||
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
|
||
Алексеев Иван, ПИбд-21
|
||
</footer>
|
||
</body>
|
||
</html>
|