First commit
This commit is contained in:
27
src/main/webapp/WEB-INF/accueilVue.jsp
Normal file
27
src/main/webapp/WEB-INF/accueilVue.jsp
Normal 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>
|
||||
Reference in New Issue
Block a user