24 lines
453 B
HTML
24 lines
453 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
|
|
<table>
|
|
<thead>
|
|
<th>Nome</th>
|
|
<th>E-mail</th>
|
|
<th>Perfil</th>
|
|
</thead>
|
|
<tbody id="conteudo_tabela_usuarios">
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<script src="js/app.js"></script>
|
|
</body>
|
|
</html> |