-
Notifications
You must be signed in to change notification settings - Fork 0
/
modificaradmi.html
53 lines (51 loc) · 2.52 KB
/
modificaradmi.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modificar Productos - Panel de Administración - TOPGAMES</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="container-fluid">
<h1>Panel de Administración - TOPGAMES</h1>
<nav class="d-flex justify-content-between align-items-center">
<a href="productos.html" class="btn btn-secondary">Productos</a>
<a href="inventario.html" class="btn btn-secondary">Inventario</a>
</nav>
</header>
<main class="container mt-4">
<h2>Modificar Producto</h2>
<form id="modificarProductoForm">
<div class="mb-3">
<label for="productoNombre" class="form-label">Nombre del Producto</label>
<input type="text" class="form-control" id="productoNombre" required>
</div>
<div class="mb-3">
<label for="productoCategoria" class="form-label">Categoría</label>
<select id="productoCategoria" class="form-select" required>
<option value="" disabled selected>Selecciona una categoría</option>
<option value="Acción">Acción</option>
<option value="Supervivencia">Supervivencia</option>
<option value="Carreras">Carreras</option>
<option value="Simulación">Simulación</option>
<option value="Rol">Rol</option>
</select>
</div>
<div class="mb-3">
<label for="productoPrecio" class="form-label">Precio</label>
<input type="number" class="form-control" id="productoPrecio" step="0.01" required>
</div>
<div class="mb-3">
<label for="productoImagen" class="form-label">Imagen</label>
<input type="file" class="form-control" id="productoImagen" accept="image/*">
</div>
<button type="submit" class="btn btn-primary">Guardar Cambios</button>
</form>
</main>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>