-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (51 loc) · 1.95 KB
/
index.html
File metadata and controls
55 lines (51 loc) · 1.95 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Acessar API FrontEnd</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="script.js"></script>
</head>
<body>
<div class="container mt-3">
<h2>Form Usuário!<samp id="ver"></samp></h2>
<form action="">
<input type="hidden" id="id" value="">
<div class="mt-3 mb-3">
<label for="nome">Nome: </label>
<input type="text" class="form-control" id="nome">
</div>
<div class="mt-3 mb-3">
<label for="email">Email:</label>
<input type="email" class="form-control" id="email">
</div>
<button type="button" class="btn btn-primary" onclick="gravarUsuario()">Gravar</button>
<button type="button" class="btn btn-secondary" onclick="limparCampos()">Novo</button>
<button type="button" class="btn btn-danger" onclick="apagarUsuario()">Apagar</button>
</form>
</div>
<div class="container mt-3">
<!-- linhas = tr -->
<!-- celulas = td -->
<ul class="pagination justify-content-end" style="margin:20px 0" id="lsPagina">
<li class="page-item"><a class="page-link" href="#">Anterior</a></li>
<li class="page-item"><a class="page-link" href="#">1</a></li>
<li class="page-item"><a class="page-link" href="#">2</a></li>
<li class="page-item"><a class="page-link" href="#">3</a></li>
<li class="page-item"><a class="page-link" href="#">Proxima</a></li>
</ul>
<table class="table table-hover">
<thead>
<tr>
<th>Id</th>
<th>Nome</th>
<th>Email</th>
</tr>
</thead>
<tbody style="cursor: pointer;" id="tbCorpo">
</tbody>
</table>
</div>
<script>atualizarTabela()</script>
</body>
</html>