-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrm_analysis.html
125 lines (115 loc) · 3.78 KB
/
frm_analysis.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!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">
<link rel="stylesheet" href="./css/styles.css">
<title>GETIAP</title>
</head>
<body>
<div class="container">
<div class="logo">
<img class="img-logo" src='./src/logo.png' alt="Logo">
</div>
<header>
<div class="topnav">
<a href="./index.html">Inicio</a>
<a class="active" class="analysis" href="./frm_analysis.html">Análisis</a>
</div>
</header>
<div class="cos">
<div class="analysis">
<h2>ANALISIS</h2>
</div>
<div class="mover">
<div class="container-form-footer3">
<button type="button" class="btn">Nuevo</button>
<button type="button" class="btn">Editar</button>
<button type="button" class="btn">Modificar</button>
<button type="button" class="btn">Eliminar</button>
</div>
<br>
<div>
<form>
<input type="text" placeholder="Lote" required="required">
<br>
<br>
<ol>
<li>
<label for="name">Nombre</label>
<input type="name" id="namea" required="required" />
</li>
<li>
<label for="aspecto">Aspecto</label>
<input type="aspect" id="dataspect" required="required" />
</li>
<li>
<label for="otrocual">Otro/Cual ?</label>
<input type="another" id="dataother" required="required" />
</li>
<li>
<label for="concepto">Concepto</label>
<input type="concept" placeholder="Concepto" required="required" />
</li>
<li>
<label for="responsable">Responsable</label>
<input type="date" id="Resp" required="required" />
</li>
<li>
<label for="review">Observaciones</label>
<input type="observ" id="Review" placeholder="Autor" required="required" />
</li>
<li>
<p>Organolépticos</p>
<label for="aroma">Aroma</label>
<input type="aro" id="Smell" required="required" />
<br>
<label for="color">Color</label>
<input type="col" id="Color" required="required" />
<br>
<label for="apariencia">Apariencia</label>
<input type="apari" id="Appereance" required="required" />
</li>
<li>
<p>Fisicoquímicos</p>
<label for="phmax">Rango pH Máx</label>
<input type="number" min="4.8" max="5.5" step="0.01" id="Peache" required="required" />
<br>
<label for="phmin">Rango pH Min</label>
<input type="number" min="4.8" max="5.5" step="0.01" id="Peache" required="required" />
<br>
<label for="densidadmax">Densidad Máx</label>
<input type="number" min="0.94" max="0.96" step="0.01" id="Densitymx"
required="required" />
<br>
<label for="densidadmin">Densidad Min</label>
<input type="number" min="0.94" max="0.96" step="0.01" id="Densitymin"
required="required" />
<br>
<label for="goomax">Viscosidad(cP) Máx</label>
<input type="number" min="13000" max="17000" id="Goomax" required="required" />
<br>
<label for="goomin">Viscosidad(cP) Min</label>
<input type="number" min="13000" max="17000" id="Goomin" required="required" />
<br>
<label for="spin">SPIN</label>
<input type="number" id="Spin" required="required" />
<br>
<label for="rpm">RPM</label>
<input type="number" id="Rpm" required="required" />
</li>
</ol>
<br>
<br>
<div class="container-form-footer2">
<button type="button" class="cancelbtn">Cancelar</button>
<button type="button" class="aceptbtn">Aceptar</button>
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>