-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (29 loc) · 1.19 KB
/
index.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
<?php
require './app/components/header.php';
?>
<header class="d-flex flex-column w-100 container mt-5">
<h5 class="font-weight-normal">Listado de Usuarios</h5>
<a href="./app/pages/addForm.php" class="btn btn-primary rounded-pill text-white align-self-end" id="open-add">Nuevo Usuario</a>
</header>
<main class="container">
<table class="table mt-4">
<thead>
<tr>
<td scope="col" class="font-weight-bold">DNI</td>
<td scope="col" class="font-weight-bold">Name</td>
<td scope="col" class="font-weight-bold">Email</td>
<td scope="col" class="font-weight-bold">Teléfono</td>
<td scope="col" class="font-weight-bold">Fecha de nacimiento</td>
</tr>
</thead>
<tbody id="data-users">
</tbody>
</table>
<div>
<button class="btn btn-light" id="previous">Anterior</button>
<button class="btn btn-light" id="next">Siguiente</button>
</div>
</main>
<script src=<?php echo $GLOBALS['base_url'] . "app/js/createList.js"; ?>></script>
</body>
</html>