Pibd-21_Alekseev_I.S._Inter.../IP/page5.html
VanyaAlekseev ccc3e790bb lab2
2023-12-03 16:59:28 +04:00

67 lines
3.4 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>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="./page5.html">Администратору</a>
</div>
</div>
</nav>
</header>
<main class="container-fluid p-2" style="margin: auto;">
<img class="background-image-1" src="back2.jpg" alt="Background Image">
<div class="row justify-content-center">
<form class="col-md-7 m-0" action="./page5.html" method="get">
<div class="mb-3">
<label for="productName" class="form-label"></label>
<input type="text" class="form-control" id="productName" placeholder="Введите название товара" required>
</div>
<div class="mb-3">
<label for="productDescription" class="form-label"></label>
<textarea class="form-control" id="productDescription" rows="3" placeholder="Введите описание товара" required></textarea>
</div>
<div class="mb-3">
<label for="productPrice" class="form-label"></label>
<input type="number" class="form-control" id="productPrice" placeholder="Введите цену товара" required>
</div>
<div class="mb-3">
<label for="productImage" class="form-label"></label>
<input type="file" class="form-control" id="productImage" required>
</div>
<div class="text-center">
<button type="submit" class="btn btn-custom">Добавить</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>