-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathusers-gerente.php
62 lines (52 loc) · 2.24 KB
/
users-gerente.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
59
60
61
62
<?php include_once('header.php'); ?>
<?php include_once('sidebar.php'); ?>
<div id="content" class="content">
<ol class="breadcrumb pull-right">
<li><a href="dashboard.php">Inicio</a></li>
<li><a href="users-home.php">Users</a></li>
<li class="active">Gerentes</li>
</ol>
<h1 class="page-header">Gerentes <small>Consulta todos los gerentes registrados.</small></h1>
<div class="row">
<div class="col-md-12">
<a href="users-new.php" class="btn btn-primary btn-lg m-b-20">Nuevo Usuario</a>
<div class="profile-container">
<div class="profile-section">
<div class="table-responsive">
<table id="game" class="table table-striped table-bordered nowrap" width="100%">
<thead>
<tr>
<th>Nombre</th>
<th>Apellido</th>
<th>Rol de usuario</th>
<th>Acciones</th>
</tr>
</thead>
<tbody>
<?php $i=1; while($i < 15): ?>
<tr>
<td><?php echo randomString($nameArray); ?></td>
<td><?php echo randomString($lastnameArray); ?></td>
<td>Administrador</td>
<td class="actions">
<a href="users-edit.php" class="btn btn-icon btn-circle btn-success">
<i class="fa fa-pencil"></i>
</a>
<a href="users-view.php" class="btn btn-icon btn-circle btn-primary">
<i class="fa fa-search"></i>
</a>
<a href="javascript:;" class="btn btn-icon btn-circle btn-danger">
<i class="fa fa-times"></i>
</a>
</td>
</tr>
<?php $i++; endwhile; ?>
</tbody>
</table>
</div>
</div> <!-- end profile-section -->
</div> <!-- end profile-container -->
</div> <!-- end col-12 -->
</div> <!-- end row -->
</div><!-- end #content -->
<?php include_once('footer.php'); ?>