-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.html
72 lines (67 loc) · 3.41 KB
/
edit.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="assets/img/yshop_ico.png">
<title>YshopOney-Editar</title>
<link rel="stylesheet" href="assets/css/resetearvalores.css">
<link rel="stylesheet" href="assets/css/base.css">
<link rel="stylesheet" href="assets/css/menu/menu.css">
<link rel="stylesheet" href="assets/css/edit/edit.css">
<link rel="stylesheet" href="assets/css/contact/contact.css">
<link rel="stylesheet" href="assets/css/footer/footer.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
</head>
<body>
<header>
<div class="color"></div>
<div class="menu__container__principal">
<div class="menu__container__logo">
<a href="index.html" class="menu__link"><img src="assets/img/logo_yso.png" alt="" class="menu__logo"></a>
</div>
<div class="menu__container__searcher">
<input type="text" class="menu__searcher" placeholder=" ¿Qué desea buscar?">
<button class="menu__btn__searcher"><span class="material-symbols-outlined">search</span></button>
</div>
<div class="menu__container__btn">
<!-- <button class="menu__btn__login" data-login><spam class="menu__spam__login">Login</spam></button> -->
</div>
</div>
<div class="color"></div>
</header>
<section class="edit__section">
<div class="edit__container">
<div class="edit__container__form">
<form class="edit__form" action="" method="POST" data-form-edit>
<h4 class="edit__title">Agregar nuevo producto</h4>
<input type="text" name="url" class="edit__input" id="edit-url" placeholder="URL de imagen">
<select name="categoria" class="edit__select" id="select-categoria">
<option value="seleccionar" selected disabled>Selecciona una opción</option>
<option value="cosmeticos">cosmeticos</option>
<option value="skinscare">skinscare</option>
</select>
<input type="text" name="nombre" class="edit__input" id="edit-nombre" placeholder="Nombre del producto">
<input type="number" name="precio" class="edit__input" id="edit-precio" placeholder="Precio del producto">
<input type="text" name="descripcion" class="edit__input" id="edit-descripcion" placeholder="Descripción">
<button class="edit__btn" data-btn-edit>Agregar producto</button>
</form>
</div>
</div>
</section>
<section class="contact__section">
<div class="contact__container" data-contact>
</div>
</section>
<footer class="footer">
<div class="footer__container">
<h4 class="footer__text">Developer by Rita Chacon Oney - 2023</h4>
</div>
</footer>
<script src="js/section-contact.js"></script>
<script type="module" src="controller/edit.controller.js"></script>
<script src="js/validaciones.js"></script>
<script src="js/validacionesEdit.js"></script>
</body>
</html>