-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCantidadesProductos.html
50 lines (42 loc) · 1.11 KB
/
CantidadesProductos.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
<HTML>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cantidades Productos</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
h1, h2 {
margin: 1em 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 0.5em 0;
}
a {
text-decoration: none;
color: #0077cc;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<BODY>
<br><br><H1 style="text-align:center;">Busqueda de Productos</H1>
<form action='CantidadesProductos' method='GET'>
<br><p style="text-align:center;" >Indique la cantidad mínima general de productos que deben haber en Stock:</p>
<br><pre style="text-align:center;">
Cantidad mínima: <input type="number" min="0" step="1" NAME="minimo"> <br>
<input TYPE="SUBMIT" VALUE="Enviar">
</pre>
<center><BR><A HREF='index.html'>Volver al menú</A></center>
</form>
</BODY>
</HTML>