-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirmacionreser.html
66 lines (60 loc) · 2.29 KB
/
confirmacionreser.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
<!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">
<link rel="stylesheet" href="style.css">
<title>Confirmacion</title>
</head>
<body>
<div class="confirmacion1">
<h1 class="confirmacion2">CONFIRMACION RESERVA</h1>
<div class="content">
<table class="tabla">
<tr>
<td class="columnas">Nombres y Apellidos: </td>
<td id="nombreCompleto" class="columnas"></td>
</tr>
<tr>
<td class="columnas">Identificacion: </td>
<td id="identificacion" class="columnas"></td>
</tr>
<tr>
<td class="columnas">Edad: </td>
<td id="edad" class="columnas"></td>
</tr>
<tr>
<td class="columnas">Telefono: </td>
<td id="telefono" class="columnas"></td>
</tr>
<tr>
<td class="columnas">E-Mail: </td>
<td id="email" class="columnas"></td>
</tr>
<tr>
<td class="columnas">Destino: </td>
<td id="destino" class="columnas"></td>
</tr>
<tr>
<td class="columnas">Precio Visita: </td>
<td id="precio" class="columnas"></td>
</tr>
<tr>
<td class="columnas">Valor a Cancelar: </td>
<td id="valorTotal" class="columnas"></td>
</tr>
<tr>
<td class="columnas">Banco: </td>
<td class="columnas">Colpatria, Cuenta Ahorro # 700-000-00-00</td>
</tr>
</table>
</div>
<div class="volver">
<a href="index.html">OK</a>
</div>
</div>
<script src="confirmacion.js">
</script>
</body>
</html>