-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolicitudDeServicio.html
112 lines (104 loc) · 3.89 KB
/
SolicitudDeServicio.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Solicitud De Servicio</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<meta name="description" content="Your description">
<meta name="keywords" content="Your keywords">
<meta name="author" content="Your name">
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="stylesheet" href="css/preview.css" type="text/css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<link href="css/ie.css" rel="stylesheet" type="text/css">
<![endif]-->
</head>
<body>
<!--content wrapper-->
<div id="wrapper">
<header>
<div class="container">
<div class="row">
<div class="span4">
<!--logo and company name-->
<h1><a href="index.html" id="logo">forepoint</a></h1>
</div>
<div class="span8">
<!--menu-->
<div class="menuMov">
<div class="menu">
<ul class="sf-menu">
<li><a href="index.html"><div class="bText">Nuestra Tienda On-line</div></a></li>
<li><a href="Servicios.html"><div class="bText">Servicios</div></a></li>
<li><a href="Contactenos.html"><div class="bText">Contáctenos</div></a></li>
<li><a href="SolicitudDeServicio.html"><div class="bText">Solicitud De Servicio</div></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</header>
<section>
<div class="dynamicContent">
<div class="row" style="justify-content: center;text-align: center;">
<div><form id="servicioForm">
<label for="nombreCliente">Nombres y Apellidos del cliente:</label>
<input type="text" id="nombreCliente" required><br>
<label for="correoCliente">Correo Electrónico:</label>
<input type="email" id="correoCliente" required><br>
<label for="numeroCelular">Número de celular:</label>
<input type="tel" id="numeroCelular" pattern="[0-9]+" required><br>
<label for="servicio">Servicio que solicita:</label>
<select id="servicio" required>
<option value="Personalización">Personalización</option>
<option value="Pedido Mayorista">Pedido Mayorista</option>
<option value="Devolución">Devolución</option>
</select><br>
<input type="submit" value="Enviar datos">
</form>
<button id="verdatos" value="Ver Datos" onclick="verDatos()">Ver Datos</button>
</div>
</div>
<div id="servicioResultado"style="display:none">
<table class="custom-table">
<thead>
<tr>
<td scope="row">Nombres y Apellidos</td>
<td scope="row">Correo Electrónico</td>
<td scope="row">Número de celular</td>
<td scope="row">Servicio solicitado</td>
</tr>
</thead>
<tbody id="contenido">
<tr>
<td>${nombreCliente}</td>
<td>${correoCliente}</td>
<td>${numeroCelular}</td>
<td>${servicio}</td>
</tr>
</tbody>
</table>
</div>
<button type="button" id="cancelar" style="display:none">Cancelar</button>
</div>
<!-- <div class="cont_bg"></div> -->
<!-- <div class="inner">
<div class="container">
<div class="row" style="justify-content: center;text-align: center;">
<h2 class="marg_4">SITIO EN CONSTRUCCIÓN</h2>
<p><span class="color_1">Temporalmente fuera de servicio.</span></p>
</div>
</div>
</div> -->
</div>
</section>
</div>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/include_script.js"></script>
</body>
</html>