-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (106 loc) · 5.1 KB
/
index.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
<!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">
<title>Inventario</title>
<link rel="shortcut icon" href="images/inventario.ico" type="image/x-icon">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header class="head1">
<h1>
<img type="icon" src="images/inventario.ico" width="30px">
Inventario
</h1>
</header>
<div id="cols">
<div id="cols1">
<div id="container">
<div id="cols3">
<div id="cols21">
<h2 id="agregarh3">Agregar</h2>
<form style="margin-top:20px;">
<div class="group">
<input type="text" class="form_field" name="codigon" id="codigo" required>
<span class="highlight"></span>
<span class="bar"></span>
<label>Código</label>
</div>
<div class="group">
<input type="text" class="form_field" name="nombren" id="nombre" required>
<span class="highlight"></span>
<span class="bar"></span>
<label>Nombre</label>
</div>
<div class="group">
<input type="number" name="cantidadn" id="cantidad" required>
<span class="highlight"></span>
<span class="bar"></span>
<label>Cantidad</label>
</div>
<div class="group">
<input type="number" name="coston" id="costo" required>
<span class="highlight"></span>
<span class="bar"></span>
<label>Costo</label>
</div>
<div class="group">
<input type="text" class="form_field" name="posicion" id="posicion" required>
<span class="highlight"></span>
<span class="bar"></span>
<label>Posición</label>
</div>
</form>
<table>
<tr>
<td colspan="4">
<button type="reset" id="btnAgregar">Agregar</button>
<button type="reset" id="btnModificar" style="display:none;">Modificar</button>
</td>
</tr>
</table>
</div>
<div id="cols22">
<h2 id="buscarh3">Búsqueda</h2>
<div id="crud_buscar">
<table id="tabla_buscar">
<tr id="t2">
<td>
<h3>Código: </h3>
</td>
<td rowspan="2"><input type="search" placeholder="Ingresa un valor" name="buscar1" id="buscar1"></td>
<td><button id="btnBuscar">Buscar</button></td>
<td><button id="btnEliminar">Eliminar</button></td>
</tr>
<tr></tr>
</table>
<div id="search" style="margin-top:10px;">
<h3 style="display:none;" id="title_search">Resultado de la búsqueda</h3>
<table id="res"></table>
</div>
</div>
<div id="listardiv">
<h2 id="buscarh3">Información del Inventario</h2>
<hr>
<table id="listar" class="round_table">
</table>
<table id="listarInverso" class="round_table">
</table>
</div>
</div>
</div>
</div>
</div>
<div id="cols2">
<div id="operacion" style="width:50%;overflow:scroll;position:sticky">
<span id="opera_lbl" style="margin-top:20px">Operación:</span>
<br><br><hr style="margin-top:43px;">
</div>
</div>
</div>
<script type="module" src="./modules/app.js"></script>
<script type="module" src="./modules/inventario.js"></script>
</body>
</html>