68 lines
3.7 KiB
HTML
68 lines
3.7 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 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-2" src="back3.jpg" alt="Background Image">
|
||
<div class="row justify-content-center">
|
||
<form class="col-md-7 m-0" action="./your_registration_handler.php" method="post">
|
||
<h3 class="text-center mb-4">Регистрация</h3>
|
||
<div class="mb-2">
|
||
<label class="form-label" for="firstName"></label>
|
||
<input id="firstName" name="firstName" class="form-control custom-rounded" type="text" placeholder="Введите ваше имя" required>
|
||
</div>
|
||
<div class="mb-2">
|
||
<label class="form-label" for="lastName"></label>
|
||
<input id="lastName" name="lastName" class="form-control custom-rounded" type="text" placeholder="Введите вашу фамилию" required>
|
||
</div>
|
||
<div class="mb-2">
|
||
<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-2">
|
||
<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" type="submit">Зарегистрироваться</button>
|
||
</div>
|
||
</form>
|
||
</div>
|
||
|
||
</main>
|
||
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-center align-items-center">
|
||
Алексеев Иван, ПИбд-21
|
||
</footer>
|
||
</body>
|
||
</html> |