41 lines
1.4 KiB
Plaintext
41 lines
1.4 KiB
Plaintext
<%@page contentType="text/html" pageEncoding="UTF-8"%> <%@ taglib prefix="c"
|
|
uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
href="https://fonts.googleapis.com/css2?family=Carme&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
</head>
|
|
<body class="w-screen h-screen">
|
|
<%@include file="jspf/sidebarJSP.jspf" %>
|
|
<div class="p-4 sm:ml-64">
|
|
<div
|
|
class="p-4 border-2 border-gray-200 border-dashed rounded-lg dark:border-gray-700 mt-14"
|
|
>
|
|
<h1 class="text-black">Liste utilisateurs :</h1>
|
|
<ul>
|
|
<c:forEach items="${users}" var="user">
|
|
<li>- Nom: ${user.nom} - Prenom: ${user.prenom}</li>
|
|
</c:forEach>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|