-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser-list.php
191 lines (178 loc) · 9.63 KB
/
user-list.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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
<?php
include('authentication.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include('locationguard.php');
?>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Arfun | User List</title>
<link href="https://cdn.jsdelivr.net/npm/simple-datatables@latest/dist/style.css" rel="stylesheet" />
<link href="css/styles.css" rel="stylesheet" />
<!-- <link href="css/user-list.css" rel="stylesheet" /> -->
<script src="https://use.fontawesome.com/releases/v6.1.0/js/all.js" crossorigin="anonymous"></script>
</head>
<body class="sb-nav-fixed">
<nav class="sb-topnav navbar navbar-expand navbar-dark bg-dark">
<!-- Navbar Brand-->
<a class="navbar-brand ps-3" href="index.php">
<img src="assets/img/logo.png" alt="logo" width="50" height="50" class="logo">ArFun E-Learning</a>
<!-- Sidebar Toggle-->
<button class="btn btn-link btn-sm order-1 order-lg-0 me-4 me-lg-0" id="sidebarToggle" href="#!"><i
class="fas fa-bars"></i></button>
<!-- Navbar Search-->
<form class="d-none d-md-inline-block form-inline ms-auto me-0 me-md-3 my-2 my-md-0">
<div class="input-group">
<!-- <input class="form-control" type="text" placeholder="Search for..." aria-label="Search for..."
aria-describedby="btnNavbarSearch" />
<button class="btn btn-primary" id="btnNavbarSearch" type="button"><i
class="fas fa-search"></i></button> -->
</div>
</form>
<!-- Navbar-->
<ul class="navbar-nav ms-auto ms-md-0 me-3 me-lg-4">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" id="navbarDropdown" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false"><i class="fas fa-user fa-fw"></i></a>
<ul class="dropdown-menu dropdown-menu-end" aria-labelledby="navbarDropdown">
<!-- <li><a class="dropdown-item" href="#!">Settings</a></li>
<li><a class="dropdown-item" href="#!">Activity Log</a></li> -->
<li>
<hr class="dropdown-divider" />
</li>
<li><a class="dropdown-item" href="logout.php">Logout</a></li>
</ul>
</li>
</ul>
</nav>
<div id="layoutSidenav">
<?php
include('side-nav.php');
?>
<div id="layoutSidenav_content">
<main>
<?php
if (isset($_SESSION['status'])) {
echo "<h5 class='alert alert-status '>" . $_SESSION['status'] . "</h5>";
unset($_SESSION['status']);
}
?>
<div class="container-fluid px-4">
<div class="row mt-4">
<div class="container">
<div class="row">
<div class="col-md-6 mb-2">
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="card">
<div class="card-header">
<h4>
Registered Users
<!-- <a href="index.php" class="btn btn-danger float-end">Back</a> -->
</h4>
</div>
<div class="card-body ">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>No.</th>
<th>Full Name</th>
<th>Phone</th>
<th>Email ID</th>
<th>Disable/Enable</th>
<th>Edit</th>
<th>Delete</th>
</tr>
</thead>
<tbody>
<?php
include('dbcon.php');
$users = $auth->listUsers();
$i = 1;
foreach ($users as $user) {
?>
<tr>
<td>
<?= $i++; ?>
</td>
<td>
<?= $user->displayName ?>
</td>
<td>
<?= $user->phoneNumber ?>
</td>
<td>
<?= $user->email ?>
</td>
<td>
<?php
if ($user->disabled) {
echo 'Disabled';
} else {
echo 'Enabled';
}
?>
</td>
<td>
<a href="user-edit.php?id=<?= $user->uid; ?>"
class="btn btn-primary btn-sm">Edit</a>
</td>
<td>
<!-- <a href="user-delete.php" class="btn btn-danger">Delete</a> -->
<form action="code.php" method="POST">
<button class="btn btn-danger btn-sm"
name="delete_user_button"
value="<?= $user->uid; ?>">
Delete
</button>
</form>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="py-4 bg-light mt-auto">
<div class="container-fluid px-4">
<div class="d-flex align-items-center justify-content-between small">
<div class="text-muted">ArFun E-Learning Copyright 2022</div>
<div>
<?php
if (isset($_SESSION['dispName'])) {
echo ucwords($_SESSION['dispName']);
}
?>
</div>
</div>
</div>
</footer>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
crossorigin="anonymous"></script>
<script src="js/scripts.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.8.0/Chart.min.js" crossorigin="anonymous"></script>
<script src="assets/demo/chart-area-demo.js"></script>
<script src="assets/demo/chart-bar-demo.js"></script>
<script src="https://cdn.jsdelivr.net/npm/simple-datatables@latest" crossorigin="anonymous"></script>
<script src="js/datatables-simple-demo.js"></script>
</body>
</html>