75 lines
2.3 KiB
HTML
75 lines
2.3 KiB
HTML
<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="./css/style.css" />
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<a class="navbar-brand p-0" href="catalog.html">
|
|
<img src="images/iconCatalog.png" alt="Каталог" width="45" />
|
|
</a>
|
|
<a class="nav-link active" aria-current="page" href="index.html">ANNA</a>
|
|
<nav>
|
|
<a class="navbar-brand p-0" href="cart.html">
|
|
<img src="images/iconsCor.png" alt="Корзина" width="37" />
|
|
</a>
|
|
<a class="navbar-brand p-0" href="account.html">
|
|
<img src="images/iconsAcc.png" alt="Аккаунт" width="38" />
|
|
</a>
|
|
</nav>
|
|
</header>
|
|
<add>
|
|
<h1>Добавить товар</h1>
|
|
<div class="container">
|
|
<div class="input-group mb-3">
|
|
<span class="input-group-text">$</span>
|
|
<input
|
|
type="text"
|
|
class="form-control"
|
|
aria-label="Amount (to the nearest dollar)"
|
|
/>
|
|
<span class="input-group-text">.00</span>
|
|
</div>
|
|
<div class="input-group mb-3">
|
|
<input
|
|
type="text"
|
|
class="form-control"
|
|
placeholder="Название"
|
|
aria-label="Username"
|
|
/>
|
|
</div>
|
|
|
|
<div class="input-group">
|
|
<span class="input-group-text">Добавьте текст</span>
|
|
<textarea class="form-control" aria-label="With textarea"></textarea>
|
|
</div>
|
|
<div class="input-group">
|
|
<input
|
|
type="file"
|
|
class="form-control"
|
|
id="inputGroupFile04"
|
|
aria-describedby="inputGroupFileAddon04"
|
|
aria-label="Upload"
|
|
/>
|
|
</div>
|
|
<button type="submit">Добавить товар</button>
|
|
<a href="orders.html" class="btn">Просмотреть заказы</a>
|
|
</div>
|
|
</add>
|
|
</body>
|
|
</html>
|