-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit-product.html
88 lines (78 loc) · 4.5 KB
/
edit-product.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Agregar Producto</title>
<link rel="stylesheet" href="src/css/reset.css">
<link rel="stylesheet" href="src/css/styles.css">
<link rel="stylesheet" href="src/css/header.css">
<link rel="stylesheet" href="src/css/footer.css">
<link rel="stylesheet" href="src/css/agregar-producto.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&family=Poppins&family=Raleway:wght@200;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header container">
<section class="logo__section">
<img src="src/images/logo.svg" alt="" class="logo__joystick">
<img src="src/images/alura.svg" alt="" class="logo">
<img src="src/images/geek.svg" alt="" class="logo">
</section>
<a class="nav__btn" href="/administrador.html">Menu Administrador</a>
<div class="search">
<input type="search" class="search-bar hidden" placeholder="¿Qué deseas buscar?" data-search>
<button class="search-btn" data-search-btn><img src="src/images/lupa.svg" alt=""></button>
</div>
<button class="false-search-btn hidden"><img src="src/images/lupa.svg"></button>
<button class="cancel-search hidden">X</button>
</header>
<main>
<section class="agregar-producto container">
<form class="agregar-producto__form" data-form>
<legend class="agregar-producto__titulo">Editar Producto</legend>
<label id="img-upload">Subir imagen...
<input type="file" id="img-input" accept="image/png, image/jpg" data-img>
</label>
<input type="text" id="nombre-producto" placeholder="Nombre del producto" data-name>
<input type="text" id="precio-del-producto" placeholder="Precio del producto" data-price>
<textarea name="description-producto" id="description-producto" placeholder="Descripción del producto" data-description></textarea>
<input type="submit" id="submit-producto" value="Editar producto">
</form>
</section>
</main>
<footer>
<div class="logo-and-form">
<section class="logo-y-enlaces container">
<section class="logo__footer">
<img src="src/images/logo.svg" alt="" class="logo__joystick-footer">
<img src="src/images/alura.svg" alt="" class="logo-alura">
<img src="src/images/geek.svg" alt="" class="logo-geek">
</section>
<ul class="enlaces__footer">
<li><a>Quienes Somos</a></li>
<li><a>Politica de Privacidad</a></li>
<li><a>Programa de Fidelidad</a></li>
<li><a>Nuestras tiendas</a></li>
<li><a>Quiero ser franquiciado</a></li>
<li><a>Anúncie aquí</a></li>
</ul>
</section>
<form class="contacto container">
<legend id="contacto-legend">Hable con nosotros</legend>
<input name="name" type="text" id="input-nombre" placeholder="Escribe tu nombre" required minlength="3"
maxlength="50">
<textarea name="" id="mensaje" cols="30" rows="6" placeholder="Escribe tu mensaje" required
maxlength="240"></textarea>
<input type="submit" value="Enviar mensaje" id="submit" />
</form>
</div>
<section class="datos-desarrollador">
<p>Desarrollado por Federico Manuel Maximovicz</p>
<p>© 2022</p>
</section>
</footer>
<script type="module" src="src/javascript/controllers/UpdateProduct-controller.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uuid/8.3.2/uuid.min.js" integrity="sha512-UNM1njAgOFUa74Z0bADwAq8gbTcqZC8Ej4xPSzpnh0l6KMevwvkBvbldF9uR++qKeJ+MOZHRjV1HZjoRvjDfNQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="src/javascript/search.js"></script>
</body>
</html>