File tree Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Expand file tree Collapse file tree 1 file changed +58
-0
lines changed Original file line number Diff line number Diff line change
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 >  ; 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 >
You can’t perform that action at this time.
0 commit comments