Internet_Programming_PIbd-2.../лаб2/прим1/page4.html
2023-11-09 22:45:49 +04:00

66 lines
3.1 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.

<html lang="ru">
<head>
<meta charset="utf-8">
<title>Рарити шоп</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="./style4.css">
</head>
<body class="h-100 d-flex flex-column">
<header>
<nav class="navbar navbar-expand-md navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="/">
<name>
<img src ="images/logo.png" class="img-fluid" alt = "...">
Рарити шоп
</name>
</a>
<button class="navbar-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 active" href="./page5.html">Каталог</a>
<a class="nav-link active" href="./page2.html">Контакты</a>
<a class="nav-link active" href="./page3.html">Личный кабинет</a>
<a class="nav-link active" href="./page9.html">Корзина</a>
</div>
</div>
</div>
</nav>
</header>
<main class="container-fluid p-2">
<form class="col-md-6 mx-auto mt-3" action="./page4.html" method="get">
<div class="mb-2">
<p><label class="form-label" for="firstname">Логин</label>
<input id="firstname" name="firstname" class="form-control" type="text" required></p>
</div>
<div class="mb-2">
<p><label class="form-label" for="email">E-mail</label>
<input id="email" name="email" class="form-control" type="email" required></p>
</div>
<div class="mb-2">
<p><label class="form-label" for="password">Пароль</label>
<input id="password" name="password" class="form-control" type="password" required></p>
</div>
<div class="mb-2">
<p><label class="form-label" for="passwordAgain">Повторите пароль</label>
<input id="password" name="passwordAgain" class="form-control" type="password" required></p>
</div>
<div class="text-center">
<button class="btn btn-primary w-50 startButton" type="submit">Зарегестрироваться</button>
</div>
</form>
</main>
<footer class="footer mt-auto d-flex flex-shrink-0 justify-content-left align-items-left fixed-bottom">
Рарити Шоп.ру Лёвушкина Анна ПИбд-21
</footer>
</body>
</html>