Skip to content

Commit df3b4cc

Browse files
author
ismael lopez
committed
first commit
0 parents  commit df3b4cc

File tree

1 file changed

+58
-0
lines changed

1 file changed

+58
-0
lines changed

usuarios.php

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
2+
<!DOCTYPE html>
3+
<html lang="es">
4+
5+
<head>
6+
<meta charset="UTF-8">
7+
<title>Usuarios</title>
8+
<!--CSS-->
9+
<link rel="stylesheet" href="media/css/bootstrap.css">
10+
<link rel="stylesheet" href="media/css/dataTables.bootstrap.min.css">
11+
<link rel="stylesheet" href="media/font-awesome/css/font-awesome.css">
12+
<!--Javascript-->
13+
<script src="media/js/jquery-1.10.2.js"></script>
14+
<script src="media/js/jquery.dataTables.min.js"></script>
15+
<script src="media/js/dataTables.bootstrap.min.js"></script>
16+
<script src="media/js/bootstrap.js"></script>
17+
<script src="media/js/lenguajeusuario.js"></script>
18+
<script>
19+
$(document).ready(function(){
20+
$('[data-toggle="tooltip"]').tooltip();
21+
});
22+
</script>
23+
</head>
24+
25+
<body>
26+
<div class="col-md-8 col-md-offset-2">
27+
<h1>Usuarios
28+
<a href="registrousuario.php" class="btn btn-primary pull-right menu"><i class="fa fa-user-plus" aria-hidden="true"></i>&nbsp;Nuevo usuario</a>
29+
</h1>
30+
</div>
31+
<div class="col-md-8 col-md-offset-2">
32+
<table id="example" class="table table-striped table-bordered" cellspacing="0" width="100%">
33+
<thead>
34+
<tr>
35+
<th>Usuario</th>
36+
<th>Password</th>
37+
<th>Nombre</th>
38+
<th>Tipo</th>
39+
<th>Status</th>
40+
<th>Acciones</th>
41+
</tr>
42+
</thead>
43+
<tbody>
44+
</tbody>
45+
<tfoot>
46+
<tr>
47+
<th>Usuario</th>
48+
<th>Password</th>
49+
<th>Nombre</th>
50+
<th>Tipo</th>
51+
<th>Status</th>
52+
<th>Acciones</th>
53+
</tr>
54+
</tfoot>
55+
</table>
56+
</div>
57+
</body>
58+
</html>

0 commit comments

Comments
 (0)