forked from ismaeldevmw/datatables-php-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusuarios.php
58 lines (55 loc) · 1.68 KB
/
usuarios.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Usuarios</title>
<!--CSS-->
<link rel="stylesheet" href="media/css/bootstrap.css">
<link rel="stylesheet" href="media/css/dataTables.bootstrap.min.css">
<link rel="stylesheet" href="media/font-awesome/css/font-awesome.css">
<!--Javascript-->
<script src="media/js/jquery-1.10.2.js"></script>
<script src="media/js/jquery.dataTables.min.js"></script>
<script src="media/js/dataTables.bootstrap.min.js"></script>
<script src="media/js/bootstrap.js"></script>
<script src="media/js/lenguajeusuario.js"></script>
<script>
$(document).ready(function(){
$('[data-toggle="tooltip"]').tooltip();
});
</script>
</head>
<body>
<div class="col-md-8 col-md-offset-2">
<h1>Usuarios
<a href="registrousuario.php" class="btn btn-primary pull-right menu"><i class="fa fa-user-plus" aria-hidden="true"></i> Nuevo usuario</a>
</h1>
</div>
<div class="col-md-8 col-md-offset-2">
<table id="example" class="table table-striped table-bordered" cellspacing="0" width="100%">
<thead>
<tr>
<th>Usuario</th>
<th>Password</th>
<th>Nombre</th>
<th>Tipo</th>
<th>Status</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<th>Usuario</th>
<th>Password</th>
<th>Nombre</th>
<th>Tipo</th>
<th>Status</th>
<th>Acciones</th>
</tr>
</tfoot>
</table>
</div>
</body>
</html>