69 lines
2.2 KiB
HTML
69 lines
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Добавить товар</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<link
|
|
href="node_modules/bootstrap/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
</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>
|