-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlist.php
40 lines (40 loc) · 1.54 KB
/
list.php
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
<!doctype html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css">
<title>Cadastros</title>
</head>
<body>
<div class="container">
<span class="align-text-top">
<button type="button" class="btn btn-primary">Download CSV</button>
</span>
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Nome</th>
<th scope="col">E-mail</th>
<th scope="col">Telefone</th>
<th scope="col">Cidade / Estado</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Lorem Ipsum</td>
<td>example@gmail</td>
<td>(99) 99999-9999</td>
<td>Cidade / Estado</td>
</tr>
</tbody>
</table>
</div>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
</body>
</html>