-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsultardociso.html
89 lines (71 loc) · 3.32 KB
/
consultardociso.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>ALTMANN - Modelando Conocimiento</title>
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="site-header">
<div class="contenedor contenido-header">
<div class="barra">
<a href="/">
<img src="img/logoaltmann19gris.PNG" alt="Logotipo Altmann">
</a>
<nav class="navegacion">
<a href="productos.html">Productos</a>
<a href="soluciones.html">Soluciones</a>
<a href="contacto.html">Contacto</a>
<a href="iniciosesion.html">Iniciar Sesión</a>
</nav>
</div>
</div> <!-- Contenedor -->
</header>
<h1 class="fw-300 centrar-texto">Consultar Documento ISO</h1>
<main class="contenedor seccion contenido-centrado">
<form action="">
<fieldset>
<legend>Información del Documento</legend>
<label for="nomdocumento">Nombre del Documento:</label>
<input type="text" id="nomdocumento" placeholder="Nombre Documento">
<label for="cliente">Proceso:</label>
<select id="clientes" >
<option value="" disabled selected>--Seleccione--</option>
<option value="Bodega">Bodega</option>
<option value="ControlCalidad">Control de Calidad</option>
<option value="Despachos">Despachos</option>
<option value="Produccion">Producción</option>
<option value="Ventas">Ventas</option>
</select>
<label for="fecha">Fecha de Creación:</label>
<input type="date" id="fecha" placeholder="Fecha de Creación">
<label for="estadosdocumentos">Estado:</label>
<select id="estadosdocumento">
<option value="" disabled selected>--Seleccione--</option>
<option value="Nuevo">Nuevo</option>
<option value="En Revisión">En Revisión</option>
<option value="Publicado">Publicado</option>
<option value="Obsoleto">Obsoleto</option>
</select>
</fieldset>
<input type="submit" value="Buscar" class="boton boton-opcion">
</form>
</main>
<!-- Sección Pie de página-->
<footer class="site-footer seccion">
<div class="contenedor contenedor-footer">
<nav class="navegacion">
<a href="productos.html">Productos</a>
<a href="soluciones.html">Soluciones</a>
<a href="contacto.html">Contacto</a>
<a href="iniciosesion.html">Iniciar Sesión</a>
</nav>
<p class="copyright">Todos los derechos reservados 2019 © </p>
</div>
</footer>
</body>
</html>