forked from thatkazuk1/QuickCredit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin-users.html
More file actions
83 lines (77 loc) · 2.63 KB
/
Copy pathadmin-users.html
File metadata and controls
83 lines (77 loc) · 2.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="https://user-images.githubusercontent.com/12225152/56736847-1860da80-6761-11e9-88ad-438900d86a9e.png"/>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge"/>
<title>QuickCredit — Admin Users</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"/>
<link rel="stylesheet" href="assets/css/admin-users.css"/>
<script src="assets/js/utils/utils.js"></script>
<script>if (!isAuth()) window.location = 'signin.html';</script>
</head>
<body>
<aside>
<div class="modal-toggle"></div>
<button class="hamburger-menu"><a class="hamburger"></a></button>
<div class="asidebar-logo">
<a href="./">
<img src="https://user-images.githubusercontent.com/12225152/57765850-2bcaea00-76fe-11e9-8d2a-0871c4a5980c.png"alt="logo" class="logo">
</a>
</div>
<nav class="navbar-menu">
<a href="admin-users.html" class="active">
<i class="fas fa-users-cog"></i>Manage Users
</a>
<a href="admin-loans.html">
<i class="fas fa-money-check"></i>Manage Loans
</a>
<a href="admin-repayment.html">
<i class="fas fa-landmark"></i>Manage Repayments
</a>
</nav>
</aside>
<header>
<nav>
<a href="#"><i class="fas fa-bell"></i></a>
<a href="signin.html" id="signout"><i class="fas fa-sign-out-alt"></i></a>
</nav>
</header>
<main>
<section class="container">
<h2 class="section-title">Displaying Users</h2>
<div class="responsive-table">
<table id="user-table">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Home Address</th>
<th>Status</th>
<th></th>
</tr>
</thead>
<tbody id="user-list"></tbody>
</table>
</div>
</section>
</main>
</body>
<script src="assets/js/script.js"></script>
<script src="assets/js/getUsers.js"></script>
</html>
<!--
<tr>
<td>Desmond</td>
<td>Edem</td>
<td>12 McNeil Street, Sabo-Yaba, Lagos</td>
<td>Thu May 23 2019</td>
<td>
<div class="wrapper">
<button class="btn-action btn-info"><i class="fas fa-eye"></i> <span><a href="user-dashboard.html">view</a></span></button>
<button class="btn-action btn-verified"><i class="fas fa-user-check"></i> <span>verified</span></button>
</div>
</td>
</tr>
-->