Merge origin/master

Conflicts:
	web/WEB-INF/AuthentificationJSP.jsp
This commit is contained in:
thomas.millot 2021-10-19 08:51:43 +02:00
parent cc1a3760ef
commit caf65f4bfe
5 changed files with 11 additions and 33 deletions

View File

@ -155,5 +155,5 @@ public class PompierMysql {
}
return id;
}
}

View File

@ -35,10 +35,10 @@ public class ProfilServlet extends HttpServlet {
out.println("<!DOCTYPE html>");
out.println("<html>");
out.println("<head>");
out.println("<title>Servlet ProfilServlet</title>");
out.println("<title>Servlet ProfilServlets</title>");
out.println("</head>");
out.println("<body>");
out.println("<h1>Servlet ProfilServlet at " + request.getContextPath() + "</h1>");
out.println("<h1>Servlet ProfilServlets at " + request.getContextPath() + "</h1>");
out.println("</body>");
out.println("</html>");
}
@ -71,7 +71,8 @@ public class ProfilServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
getServletContext().getRequestDispatcher("/WEB-INF/ProfilJSP.jsp")
.forward(request, response);
}
/**

View File

@ -1,17 +1,16 @@
<%--
Document : authentificationJSP
Created on : 18 oct. 2021, 11:09:26
Author : Chelloug.Eliass
Author : Millot.Thomas
--%>
<%@include file="jspf/enteteJSPF.jspf" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@page import="com.test.forms.AuthentifForm" %>
<!-- Affichage du formulaire si l'utilisateur ne s'est pas encore authentifié -->
<div id="contenu">
<h2>Merci de vous identifier pour acceder aux dossiers</h2>
<form name="frmIdentification" method="POST">
<form name="frmIdentification" method="POST" action="Profil">
<c:choose>
<c:when test="${empty param.ztPseudo}">
<fieldset><legend>Identification utilisateur</legend>
@ -38,4 +37,4 @@
</form>
<br /><br/>
</div>
</html>

View File

@ -1,7 +1,7 @@
<%--
Document : ModifProfilJSP
Created on : 18 oct. 2021, 11:10:01
Author : Chelloug.Eliass
Author : Millot.thomas
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>

View File

@ -1,25 +1,3 @@
<%--
Document : authentificationJSP
Created on : 18 oct. 2021, 11:09:26
Author : Chelloug.Eliass
--%>
<%@include file="jspf/enteteJSPF.jspf" %>
<div id="contenu">
<h2>Merci de vous identifier pour acceder aux dossiers</h2>
<form name="frmIdentification" method="POST" action="Profil">
<fieldset><legend>Identification utilisateur</legend>
<br /><br />
<label for="nom">Nom du compte</label>
<input id="login" type="text" name="login" size="30" maxlength="45" placeholder="Entrez votre nom d'Utilisateur">
</p>
<p>
<label for="mdp">Mot de passe</label>
<input id="mdp" type="password" name="mdp" size="30" maxlength="45" placeholder="Entrez votre Mot de Passe">
</p><br /><br />
<input type="submit" name="valider" value="Valider">
<input type="reset" name="annuler" value="Annuler">
</p>
</fieldset>
</form>
<br /><br />
<h2>Merci de vous identifier pour acceder aux dossiers</h2>
</div>