-
Notifications
You must be signed in to change notification settings - Fork 0
/
clientes.html
125 lines (103 loc) · 4.75 KB
/
clientes.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
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="es">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reto Ciclo3</title>
<!--ANEXAMOS UN ESTILOS DE LA WEB boostrap-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<!--link href="css/bootstrap.min.css" rel="stylesheet"-->
</head>
<body>
<div class="fram-externoweb" style="height:1000px; background-image: url(images/C_Mochilero.jpg)">
<div class="container"> <!--Contenedor interno pagina web-->
<!--Clase container crea un marco de pagina web-->
<div class="row mt-2" align="center" style="height: 45px;">
<hr>
<h3>VACATION HOME RENTALS</h3>
</div>
<br><br>
<!--Inicia la caja donde se construyen los formularios-->
<div class="formularios" style="height: 250px;">
<div class="row"> <!--Creacion del row que permite dividir en secciones horizontal-->
<div class="col-2" align="left"><!--seccion No.1 de 2 espacios-->
<div class="dropdown"><!--inicio del menu-->
<button>Menu Consultas</button>
<div class="dropdown-content">
<a href="index.html">Cabañas</a>
<a href="clientes.html">Clientes</a>
<a href="mensajes.html">Mensajes</a>
</div>
</div>
</div>
<!--Clase row para que el menu, busqueda id y detalles queden en una misma fila-->
<!--Fin del Menu-->
<div class="col-5" align="center"><!--seccion No.2 de 5 espacios-->
<!--Inicio del Formulario Busqueda por ID-->
<br>
<label for="consulta-id"><strong> Consulta Cliente por ID</strong></label>
<form id="formulario-busquedaId">
<label>ID: </label>
<input id="consultaxid" type="number" placeholder="Ingrese un ID">
<div id="btnFormularioCabanaID"><br>
<input id="btnConsultar" type="button" onclick="detalleConsultaxID()" value="Consultar" class="btn btn-primary">
</div>
</form>
</div>
<!--Fin del Formulario Busqueda por ID-->
<div class="col-5" align="left"> <!--seccion No.3 de 5 espacios-->
<!--Inicio del Formulario Detalles-->
<label for="detalles-clientes"><strong> Detalles del Cliente</strong></label>
<form id="formulario-cliente">
<label>ID: </label>
<input id="myid" type="number" placeholder="Ingrese un ID"> <br>
<label>NAME</label>
<input id="name" type="text" placeholder="NAME"> <br>
<label>EMAIL</label>
<input id="email" type="text" placeholder="@EMAIL"> <br>
<label>AGE</label>
<input id="age" type="text" placeholder="AGE"> <br>
<div id="btnFormularioCliente">
<br>
<input id="btnCrearCliente" type="submit" onclick="crearNewCliente()" value="Crear" class="btn btn-primary">
</div>
</form>
</div>
<!--Fin del Formulario Detalles-->
</div>
<!--Cierre de la clase row-->
<hr>
</div>
<!--Cierre de la caja donde se construyeron los formularios-->
<div style="height: 40px;">
<table class="table table-hover">
<tr id="encabezado-tabla" align="center">
<th width="7%"><strong>ID</strong></th>
<th width="36%"><strong>NAME</strong></th>
<th width="35%"><strong>EMAIL</strong></th>
<th width="5%"><strong>AGE</strong></th>
<th><strong>DETALLES</strong></th>
</tr>
</table>
</div>
<div style="height: 210px; overflow: auto">
<table class="table table-hover">
<tbody id="bodyTablaClientes">
</tbody>
</table>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script>
<script src="js//clientes.js"></script>
<!--script src="js//bootstrap.bundle.min.js"></script-->
</div>
</div>
</body>
</html>
<!--  = Etiqueta para un espacio horizontal-->
<!--overflow:auto sirve para poner el scrollbar-->