-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
107 lines (95 loc) · 3.18 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="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">
<title>Inventario</title>
</head>
<body>
<style>
body {
font-family: "Helvetica Neue", Helvetica, sans-serif;
}
h1 {
font-weight: 700;
font-size: 40px;
text-align: center;
color: #2c3258;
}
label {
display: block;
}
div {
margin: 5px;
}
button {
margin: 2px;
}
input {
padding: 9px;
margin: 5px 0;
border: 2px solid rgb(184, 184, 184);
border-radius: 9px;
-webkit-box-shadow: 0px 7px 23px -5px rgba(0,0,0,0.08);
box-shadow: 0px 7px 23px -5px rgba(0,0,0,0.08);
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
width: 40%;
}
th, td {
padding: 5px;
}
.card {
padding: 5px;
margin: 16px;
width: 20%;
border: 4px solid rgb(0, 0, 0);
}
.content-info {
width: 95%;
margin: 0 auto;
}
</style>
<h1>Inventario de Productos</h1>
<div class = 'content-info'>
<form>
<div>
<label for="txtCode">Código:</label>
<input type='text' id='txtCode'>
</div>
<div>
<label for="txtName">Nombre:</label>
<input type='text' id='txtName'>
</div>
<div>
<label for="txtAmount">Cantidad:</label>
<input type='number' id='txtAmount'>
</div>
<div>
<label for="txtCost">Costo:</label>
<input type='number' id='txtCost'>
</div>
<div>
<label for="txtInsert">Insertar:</label>
<input type='number' id='txtInsert'>
</div>
<div>
<button type='button' id='btnAdd'>Agregar</button>
<button type='button' id='btnDelete'>Eliminar</button>
<button type='button' id ='btnSearch'>Buscar</button>
<button type='button' id='btnList'>Listar</button>
<button type='button' id='btnReverse'>Listar Inverso</button>
<button type='button' id='btnInsert'>Insertar</button>
</div>
</form>
<div id='details'></div>
<div>
<table id= 'table'></table>
</div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>