-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.19 KB
/
index.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
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- CSS de Bootstrap -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<title>Hello fetch</title>
</head>
<body>
<div id="container" class="container mt-3">
<h1>🔎 ┇ Buscador</h1>
<p>Ingresá el ID del usuario que desea buscar.</p>
<div class="form-group row">
<div class="col-xs-2 mx-2">
<input id="userID" placeholder="ID" class="form-control" type="text">
</div>
<div class="col-xs-3 mx-1">
<button class="btn btn-primary" onclick="fetchUser()">🔎</button>
</div>
</div>
<hr>
<table id="table" class="table table-striped">
<thead class="thead-dark">
<th>id</th>
<th>Nombre</th>
<th>Email</th>
<th>Cumpleaños</th>
<th>Edad</th>
</thead>
<tbody id="tbody"></tbody>
</table>
<h3 id="nores"></h3>
</div>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>