You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sae_2a_anglais/Project/php/templates/usersView.html

42 lines
1.7 KiB

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Users</title>
<link href="{{base}}/css/styles.css" rel="stylesheet" />
<link rel="icon" type="image/x-icon" href="{{base}}/assets/favicon.ico"/>
</head>
<body>
{% include 'navBar.twig' %}
{% if users is defined %}
<div class="content">
<section class="w-100">
<table class="w-100">
<tr class="d-flex flex-fill justify-content-around">
<td><a href="{{base}}/admin/{{userID}}/showAllUsers">
<input class="btn btn-info" type="button" value="Show all users"/>
</a></td>
<td><a href="{{base}}/admin/{{userID}}/showAllAdmins">
<input class="btn btn-info" type="button" value="Show all admins"/>
</a></td>
<td><a href="{{base}}/admin/{{userID}}/showAllTeachers">
<input class="btn btn-info" type="button" value="Show all teachers"/>
</a></td>
<td><a href="{{base}}/admin/{{userID}}/showAllStudents">
<input class="btn btn-info" type="button" value="Show all students"/>
</a></td>
</tr>
</table>
</section>
<section>
{% include 'userContainer.twig' with {'users' : users, 'action' : 'removeUser'} %}
</section>
</div>
{% endif %}
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="{{base}}/js/scripts.js"></script>
</body>
</html>