-
Notifications
You must be signed in to change notification settings - Fork 0
/
order.html
88 lines (81 loc) · 2.69 KB
/
order.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TecnoServ: Login y Register</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/order.css">
</head>
<body>
<header>
<br>
<a href="index.html">INICIO</a>
<a href="about.html">MAS DE NOSOTROS</a>
<a href="service.html">SERVICIOS</a>
</header>
<main>
<div class="login-box">
<h2>
Ordenar un servicio
</h2>
<br>
<form>
<div class="user-box">
<input type="text" name="" required="">
<label>NOMBRE</label>
</div>
<div class="user-box">
<input type="text" name="" required="">
<label>EMAIL</label>
</div>
<div class="user-box">
<input type="text" name="" required="">
<label>TELEFONO/CELULAR</label>
</div>
<h2>
Selecciona el tipo de servicio que necesitas
</h2>
<form class="form-container setup" id="setup-form">
<div class="Usuario-box">
<label></label>
<select name="tipo-de-servicio" id="tipo-de-servicio">
<option value="" disabled selected>TIPO DE SERVICIO</option>
<option value="">Revisión de equipos</option>
<option value="">Instalación de sistemas operativos</option>
<option value="">Instalación de Office</option>
<option value="">Instalación de programas</option>
<option value="">Limpieza de equipos</option>
<option value="">Cambio de componentes</option>
<option value="">Combo sofware</option>
<option value="">Combo mantenimiento general</option>
<option value="">Cableado de red</option>
<option value="">Instalación de Cámaras</option>
<option value="">Manteniomiento de redes</option>
<option value="">Red LAN</option>
</select>
</div>
<br>
<div class="user-box">
<input type="text" name="" required="">
<label>DESCRIPCIÓN DE FALLA O DAÑO</label>
</div>
<div class="user-box">
<input type="text" name="" required="">
<label>VER MI SERVICIO</label>
</div>
<a href="#">
<span></span>
<span></span>
<span></span>
<span></span>
Submit
</a>
</form>
</div>
</main>
<script src="js/login.js"></script>
</body>
</html>