forked from Anandkp2015/Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.php
61 lines (60 loc) · 1.38 KB
/
view.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
<?
require_once('header.php');
?>
<div class="box-content">
<table class="table table-striped table-bordered bootstrap-datatable datatable">
<thead>
<tr>
<th>Username</th>
<th>Date registered</th>
<th>Role</th>
<th>Status</th>
<th>Actions</th>
</tr>
</thead>
<tr>
<td>Sumit</td>
<td>05-03-2013</td>
<td>web Devlopment</td>
<td>Active</td>
<td class="center">
<a class="btn btn-success" href="#">
<i class="icon-zoom-in icon-white"></i>View</a>
<a class="btn btn-info" href="#">
<i class="icon-edit icon-white"></i>Edit</a>
<a class="btn btn-danger" href="#">
<i class="icon-trash icon-white"></i>Delete</a>
</td>
</tr>
<tr>
<td>Anand</td>
<td>05-03-2013</td>
<td>web Devlopment</td>
<td>Active</td>
<td class="center">
<a class="btn btn-success" href="#">
<i class="icon-zoom-in icon-white"></i>View</a>
<a class="btn btn-info" href="#">
<i class="icon-edit icon-white"></i>Edit</a>
<a class="btn btn-danger" href="#">
<i class="icon-trash icon-white"></i>Delete</a>
</td>
</tr>
<tr>
<td>Anands</td>
<td>05-03-2013</td>
<td>web Devlopment</td>
<td>Active</td>
<td class="center">
<a class="btn btn-success" href="#">
<i class="icon-zoom-in icon-white"></i>View</a>
<a class="btn btn-info" href="#">
<i class="icon-edit icon-white"></i>Edit</a>
<a class="btn btn-danger" href="#">
<i class="icon-trash icon-white"></i>Delete</a>
</td>
</tr>
</table>
<?
require_once('footer.php');
?>