-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathuserAdmin.php
50 lines (32 loc) · 906 Bytes
/
userAdmin.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
<?php
$pageName='Liste Utilisateurs';
include_once 'assets/bootstrapAsset.php';
include_once 'autoload.php';
$userRepo=new UserRepository();
$users=$userRepo->findAll();
?>
</head>
<body>
<table class="table table-hover">
<thead>
<tr>
<th scope="col"><h3 style="color:#5FC2BA">Nom d'utilisateur</h3></th>
<th scope="col"><h3 style="color:#5FC2BA">Email</h3></th>
<th scope="col"><h3 style="color:#5FC2BA">Mot de passe</h3></th>
<th scope="col"></th>
</tr>
</thead>
<tbody>
<?php foreach($users as $user){ ?>
<tr class="user__row">
<td><?php echo $user['username'] ?></td>
<td><?php echo $user['email'] ?></td>
<td><?php echo $user['password'] ?></td>
<td><i class="fas fa-trash delete"></i></td>
</tr>
<?php } ?>
</tbody>
</table>
<script src="js/admin.js"></script>
</body>
</html>