-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewallacct.php
47 lines (40 loc) · 975 Bytes
/
viewallacct.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
<?php
require_once "db_helper.php";
require_once "login_helper.php";
require_administrator();
$userlist = db_get_users();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<?php require_once 'head.php'; ?>
</head>
<body>
<?php require_once 'nav.php'; ?>
<div style="text-align: center; margin-top: 15px;" class="container">
<!-- Example row of columns -->
<div class="row">
<div class="col-md-12">
<h2>User Management</h2>
<table class="table">
<tbody>
<?php
foreach($userlist as $u){
?>
<tr>
<td><a href="/viewacct.php?u=<?php echo $u;?>"><?php echo $u;?></a></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
<hr>
<div class="row">
<hr>
<footer>
<p>© 2016 CDC Inc. <a href="/privacy.txt">privacy policy</a></p>
</footer>
</div> <!-- /container -->
</body>
</html>