forked from ManuOSMx/escomerce2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
agregarProducto.html
174 lines (157 loc) · 8.49 KB
/
agregarProducto.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!DOCTYPE html>
<html lang="en">
<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 href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<link rel="icon" href="./img/LOGO.png">
<link rel="stylesheet" href="./style/styleBase.css">
<link rel="stylesheet" href="./style/styleGestionarCatalogo.css">
<link rel="stylesheet" href="./style/styleAgregarProducto.css">
<link rel="stylesheet" href="./style/styleSideBar.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/malihu-custom-scrollbar-plugin/3.1.5/jquery.mCustomScrollbar.min.css">
<title>ESCOMERCE</title>
</head>
<body id="gestionarCatalogo_body_container" class="body_container">
<header id="gestionarCatalogo_header_container" class="header_container"></header>
<!--Barra de Navegacion-->
<!--Nombres id(NO SE REPITE): nombreDeLaVista_NombreCajitaPadre_NombreCajita_-->
<!--Ej: id: gestionarCatalogo_navbar_container_-->
<nav id="index_navbar_container" class="navbar_container">
<div class="logo_container">
<img class="logo" src="./img/LOGO.png" alt="EscomerceLogo">
<img class="logo_letters" src="./img/LETRAS LOGO.png" alt="EscomerceLetras">
</div>
<ul class="navbar_links">
<li><a href="./index.html">Inicio</a></li>
<li><a href="./login.html">Perfil</a></li>
<li><a href="#">Algo</a></li>
<li><a href="#">Mas</a></li>
</ul>
<a class="head_cta" href="#"><button class="button_Carrito"><i class="far fa-shopping-cart"></i> Carrito</button></a>
</nav>
<!--Vistas-->
<article id="gestionarCatalogo_main_container" class="main_container">
<!--Contenido aquí agregarán todas sus vistas-->
<h1>Agregar producto</h1>
<br>
<div class="formulario">
<div class=nombreProductoForm>
<input class="form-control form-control-sm" type="text" placeholder="Nombre del producto" aria-label=".form-control-sm example">
</div>
<br>
<div class="categoriaProductoForm">
<select class="form-select" aria-label=".form-select-sm example">
<option selected>Categoria </option>
<option value="1">Categoria 1</option>
<option value="2">Categoria 2</option>
<option value="3">Categoria 3</option>
</select>
</div>
<br>
<div class="condicionesProductoForm">
<div class="input-group">
<span class="input-group-text" id="inputGroupPrepend2">$</span>
<input type="text" class="form-control form-control-sm" id="validationDefaultUsername" aria-describedby="inputGroupPrepend2" placeholder="Precio">
</div>
<div><input class="form-control" type="text" placeholder="Cantidad" aria-label=".form-control-sm example"></div>
<div>
<select class="form-select " aria-label=".form-select-sm example">
<option>Condición</option>
<option value="1">Nuevo</option>
<option value="2">Usado</option>
</select>
</div>
</div>
<br>
<div class="imagenesProductoForm">
<label for="formFile" class="form-label">Imagenes del producto</label>
</div>
<div class="mb-3">
<input class="form-control" type="file" id="formFile">
</div>
<br>
<div class="descripcionProductoForm">
<textarea class="form-control" id="exampleFormControlTextarea1" placeholder="Descripción del producto" rows="4"></textarea>
</div>
<br>
<button onclick="agregarProducto()" type="button " class="btn btn-primary ">Agregar producto</button>
</div>
</article>
<!--SIDEBAR MI CUENTA-->
<div class="wrapper ">
<!-- Sidebar -->
<nav id="sidebar ">
<div class="sidebar-header ">
<a>Mi cuenta</a>
</div>
<ul class="list-unstyled components ">
<li class="active ">
<a href="#homeSubmenu " data-toggle="collapse " aria-expanded="false " class="dropdown-toggle ">Compras</a>
<ul class="collapse list-unstyled " id="homeSubmenu ">
<li>
<a href="consultarPedidos.html ">Pedidos</a>
</li>
<li>
<a href="# ">Devoluciones</a>
</li>
</ul>
</li>
<li>
<a href="#pageSubmenu " data-toggle="collapse " aria-expanded="false " class="dropdown-toggle ">Ventas</a>
<ul class="collapse list-unstyled " id="pageSubmenu ">
<li>
<a href="agregarProducto.html ">Agregar producto</a>
</li>
<li>
<a href="gestionarCatalogo.html ">Gestionar productos</a>
</li>
<li>
<a href="# ">Gestionar pedidos</a>
</li>
<li>
<a href="# ">Historial de ventas</a>
</li>
</ul>
</li>
</ul>
</nav>
</div>
<!--Ignorar por el momento-->
<aside class="sidebar "></aside>
<footer id="gestionarCatalogo_footer_container " class="footer_container ">
<div class="foot_cta ">
<h3>Integrantes:</h3>
<p id="numIntegrantes "></p>
<!--Aquí escriban sus nombres-->
<ul id="gestionarCatalogo_Footer_miembros " class="miembros ">
<li><a href="https://github.com/SheraniVM ">Sherani Vázquez Medina</a></li>
<li><a href="https://manuosmx.github.io/manu/ ">Manuel Eduardo Ortiz Salazar</a></li>
<li><a href="https://github.com/Daniel-GB0319 ">Geovanni Daniel Gonzalez Barrientos</a></li>
<li><a href="https://github.com/luis-ale-117 ">Luis Alejandro Mendoza Franco</a></li>
</ul>
</div>
<div class="copyright ">
<p>ESCOMERCE © . 2021. Todos los derechos reservados. MAMBRU SE FUE A LA GUERRA QUE DOLOR QUE DOLOR QUE PENA UPDATE: 23/05/2021</p>
</div>
</footer>
<!--Aquí se agregarán los js-->
<script src="./js/main.js "></script>
<script src="//cdn.jsdelivr.net/npm/sweetalert2@11 "></script>
<script src="./js/sweetAlert.js "></script>
<script src="./js/sidebar.js "></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/solid.js " integrity="sha384-tzzSw1/Vo+0N5UhStP3bvwWPq+uvzCMfrN1fEFe+xBmv1C/AtVX5K0uZtmcHitFZ " crossorigin="anonymous "></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.13/js/fontawesome.js " integrity="sha384-6OIrr52G08NpOFSZdxxz1xdNSndlD4vdcf/q2myIUVO0VsqaGHJsB0RaBE01VTOY " crossorigin="anonymous "></script>
<!-- jQuery CDN - Slim version (=without AJAX) -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js " integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo " crossorigin="anonymous "></script>
<!-- Popper.JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js " integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ " crossorigin="anonymous "></script>
<!-- Bootstrap JS -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js " integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm " crossorigin="anonymous "></script>
</body>
<!--Colores https://paletton.com/ -->
<!--Documentacion 1 https://developer.mozilla.org/es/ -->
<!--Documentacion 2 https://www.w3schools.com/ -->
</html>