-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (55 loc) · 2.27 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
<!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 class="container">
<div>
<div class="logo">
<img class="img-logo" src='./src/logo.png' alt="Logo">
</div>
<header>
<div class="topnav">
<a class="active" href="./index.html">Inicio</a>
<a href="./frm_analysis.html">Análisis</a>
<a href="./frm_control.html">Control Microbiológico</a>
<a href="./frm_material.html">Materia Prima</a>
<a href="./frm_crop.html">Medios de Cultivo</a>
<a href="./frm_parameters.html">Parámetros de Agua</a>
<a href="./frm_product.html">Producto Granel</a>
</div>
</header>
<div class="cos">
<form>
<div class="imgcontainer">
<img class="img-login" src='./src/login.png' alt="Avatar">
</div>
<div class="container-form">
<div class="div-form">
<label for="uname"><b>ID Usuario</b></label>
<input type="text" placeholder="Ingrese su usuario" name="uname" required>
</div>
<div class="div-form">
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Ingrese su contraseña" name="psw" required>
</div>
<div class="div-form">
<button type="submit">Login</button>
<label>
<input type="checkbox" checked="checked" name="remember"> Recuerdame
</label>
</div>
<div class="container-form-footer">
<button type="button" class="cancelbtn">Cancelar</button>
<span class="psw">Olvidó su <a href="#">contraseña?</a></span>
</div>
</div>
</form>
</div>
</div>
</body>
</html>