-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin_userslist.php
More file actions
88 lines (77 loc) · 2.03 KB
/
Copy pathadmin_userslist.php
File metadata and controls
88 lines (77 loc) · 2.03 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<?php
require_once("partials/header.php");
?>
<div class="container">
<div class="row">
<div class="col-md-3 mb-4">
<div class="card mb-4">
<div class="card-header py-3">
<h5 class="mb-0">Profile</h5>
</div>
<div class="card-body">
<div class="row">
<div class="col-12">
<div class="text-center mb-3">
<img src="assets/images/dp.jpg" class="img-fluid rounded-circle">
</div>
<div class="col-12 text-center">
<button type="button" class="btn btn-primary btn-block btn-sm">
Change Picture
</button>
</div>
<hr>
<div>
<span><b>Oluwaseun Ibukun</b></span>
<span><i>Member Since Jan 20th , 2023</i></span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-9 mb-4">
<div class="card mb-4">
<div class="card-header py-3">
<h5 class="mb-0">Registered Users</h5>
</div>
<div class="card-body" style="min-height:200px">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">FullName</th>
<th scope="col">Role</th>
<th scope="col">Action</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Tobechukwu Osa</td>
<td>User</td>
<td>
<a href='details.html' class='btn btn-sm btn-info'><i class='fa fa-list'></i>Details</a>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Tobechukwu Osa</td>
<td>Admin</td>
<td> <a href='details.html' class='btn btn-sm btn-info'><i class='fa fa-list'></i>Details</a></td>
</tr>
<tr>
<th scope="row">3</th>
<td>Tobechukwu Osa</td>
<td>User</td>
<td> <a href='details.html' class='btn btn-sm btn-info'><i class='fa fa-list'></i>Details</a></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php
require_once("partials/footer.php");
?>