First commit

This commit is contained in:
2025-09-15 17:43:29 +02:00
commit 04000480a5
18 changed files with 534 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<%--
Document : accueilJSP
Created on : 12 sept. 2025, 14:42:44
Author : steve.maingana
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<%@include file="jspf/entete.jspf" %>
<body>
<%@include file="jspf/menu.jspf" %>
<h1>Bienvenue sur la nouvelle application de gestion des clients écrite avec JakartaEE</h1>
<%
boolean login = (boolean) request.getAttribute("login");
if (login) {
%>
<p>Bienvenue ${pseudo}</p>
<%
} else {
%>
<%@include file="jspf/login.jspf" %>
<%
}
%>
</body>
</html>