-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingresarorden.html
92 lines (74 loc) · 3.48 KB
/
ingresarorden.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
<!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">Ingresar Orden</h1>
<main class="contenedor seccion contenido-centrado">
<form action="">
<fieldset>
<legend>Información de la Orden</legend>
<label for="numorden">Número de Orden:*</label>
<input type="text" id="numorden" placeholder="# Orden" required>
<label for="cliente">Cliente: *</label>
<select id="clientes" required>
<option value="" disabled selected>--Seleccione--</option>
<option value="Cliente1">Cliente 1</option>
<option value="Cliente2">Cliente 2</option>
<option value="Cliente3">Cliente 3</option>
<option value="Cliente4">Cliente 4</option>
</select>
<label for="fecha">Fecha de Creación:</label>
<input type="date" id="fecha" placeholder="Fecha de Creación" required>
<label for="documentosrelacionados">Documentos Relacionados</label>
<input type="file" name="filefield" multiple="multiple">
<label for="estado">Estado:</label>
<select id="estado">
<option value="" disabled selected>--Seleccione--</option>
<option value="Sin Iniciar">Sin Iniciar</option>
<option value="En Proceso">En Proceso</option>
<option value="Terminado">Terminado</option>
<option value="Despachado">Despachado</option>
</select>
<label for="descripcion">Descripción:</label>
<textarea id="descripcion"></textarea>
</fieldset>
<input type="submit" value="Guardar" 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>