-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathareaAdmin.html
More file actions
54 lines (49 loc) · 1.59 KB
/
Copy pathareaAdmin.html
File metadata and controls
54 lines (49 loc) · 1.59 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/column.css">
<link rel="stylesheet" href="css/transicao.css">
<title>Área Administrativa</title>
</head>
<body>
<!--Pluggin Vlibras-->
<div vw class="enabled">
<div vw-access-button class="active"></div>
<div vw-plugin-wrapper>
<div class="vw-plugin-top-wrapper"></div>
</div>
</div>
<h1 class="title">Área Administrativa</h1>
<button id="load-users">Carregar dados</button>
<div class="table-container">
<table id="users-table">
<thead>
<tr>
<th>ID</th>
<th>Nome</th>
<th>Telefone</th>
<th>Email</th>
<th>Senha</th>
<th>Ação</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<a href="logado.html">
<button class="back">Sair</button>
</a>
<div id="loading" class="loader" style="display: none;"></div>
<script src="js/admin.js"></script>
<script src="js/db.js"></script>
<script src="https://vlibras.gov.br/app/vlibras-plugin.js"></script>
<script src="js/transicao.js"></script>
<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>
</body>
</html>