-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (60 loc) · 2.79 KB
/
Copy pathindex.html
File metadata and controls
69 lines (60 loc) · 2.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tarea</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
</head>
<body>
<div class="container mt-3 bg-dark text-light p-5 rounded-2">
<div class="row">
<div class="col">
<label class="form-label">Producto</label>
<input type="text" id="addItem" class="form-control" aria-describedby="passwordHelpBlock">
<label class="form-label mt-4">Cantidad</label>
<input type="text" id="addTotal" class="form-control" aria-describedby="passwordHelpBlock">
<button onclick="guardar()" class="btn btn-success mt-3">Agregar</button>
</div>
<div class="col">
<table class="table table-dark">
<thead>
<tr>
<th scope="col">Producto</th>
<th scope="col">Cantidad</th>
</tr>
</thead>
<tbody id="tabla">
</tbody>
</table>
</div>
<div class="col">
<label class="form-label">Modificar</label>
<div class="row">
<div class="col">
<input type="text" id="modificar" class="form-control" placeholder="Producto">
</div>
<div class="col">
<button onclick="cambiar()" class="btn btn-success">Agregar</button>
</div>
</div>
<div id="vistaModificar" class="row mt-3">
</div>
<label class="form-label mt-3">Agregar inventario</label>
<div class="row">
<div class="col">
<input type="text" id="inventario" class="form-control" placeholder="Producto">
</div>
<div class="col">
<button onclick="inventario()" class="btn btn-success">Agregar</button>
</div>
</div>
<div id="vistaInventario" class="row mt-3">
</div>
</div>
</div>
</div>
<script src="js/scripts.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>