-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin-products.html
67 lines (67 loc) · 3.69 KB
/
admin-products.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<title>Administrar productos | Nook's shop</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="assets/img/icon-nooks.svg">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="Css/reset.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="Css/navbar.css">
<link rel="stylesheet" href="Css/banner.css">
<link rel="stylesheet" href="Css/footer.css">
<link rel="stylesheet" href="Css/products.css">
<link rel="stylesheet" href="Css/bases.css">
<link rel="stylesheet" href="Css/admin/products.css">
<script src="https://code.jquery.com/jquery-3.6.4.min.js" integrity="sha256-oP6HI9z1XaZNBrJURtCoUT5SUnxFr8s3BzRl+cbzUq8=" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav class="navegation">
<a href="index.html" class="navegation__icon"><img class="navegation__image" src="assets/img/icon-nooks.svg" alt="Icono de Nooks's"></a>
<div class="navegation__left">
<div class="navegation__search">
<input class="navegation__input" type="search">
<div class="button__lens" id="inputSearch">
<svg xmlns="http://www.w3.org/2000/svg" class="navegation__lens bi bi-search" viewBox="0 0 16 16">
<path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/>
</svg>
</div>
</div>
<a href="sesion.html" class="navegation__button"><img class="navegation__sesion" src="assets/img/icon-admin.svg" alt=""></a>
</div>
</nav>
</header>
<body>
<main>
<section class="products">
<section class="products__section furniture">
<div class="section-top">
<h1 class="products__title">Muebles</h1>
<a href="" class="not-style products__link">Ver todo ➔</a>
</div>
<div class="section-bottom" data-furniture-cards></div>
</section>
<section class="products__section clothes">
<div class="section-top">
<h1 class="products__title">Ropa</h1>
<a href="" class="not-style products__link">Ver todo ➔</a>
</div>
<div class="section-bottom" data-clothes-cards></div>
</section>
<section class="products__section music">
<div class="section-top">
<h1 class="products__title">KK Musica</h1>
<a href="" class="not-style products__link">Ver todo ➔</a>
</div>
<div class="section-bottom" data-music-cards></div>
</section>
</section>
</main>
<footer id="footer"></footer>
</body>
<script type="module" src="js/admin-createProducts.js"></script>
<script src="main.js"></script>
</body>
</html>