Compare commits

..

No commits in common. "caf65f4bfefce88572bba5283cb2d2f53bfd64e5" and "239a3b33e7c6ea2d05494a3eab9233b50c1cd3ac" have entirely different histories.

6 changed files with 34 additions and 28 deletions

View File

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

View File

@ -5,7 +5,6 @@
*/
package com.test.servlets;
import com.test.forms.AuthentifForm;
import java.io.IOException;
import java.io.PrintWriter;
import jakarta.servlet.ServletException;
@ -72,17 +71,7 @@ public class AuthentifServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
// Création de l'objet leControle de type AuthentifForm
AuthentifForm leControle = new AuthentifForm();
// Appel de la méthode controlerAdmin
boolean isAdmin = leControle.controlerAdmin(request);
// Création de 2 attributs de requête (isAdmin et leControle)
request.setAttribute("isAdmin", isAdmin);
request.setAttribute("controlForm", leControle);
// Affichage de la JSP
getServletContext().getRequestDispatcher("/WEB-INF/ProfilJSP.jsp")
.forward(request, response);
processRequest(request, response);
}
/**

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

View File

@ -1,26 +1,22 @@
<%--
Document : authentificationJSP
Created on : 18 oct. 2021, 11:09:26
Author : Millot.Thomas
Author : Chelloug.Eliass
--%>
<%@include file="jspf/enteteJSPF.jspf" %>
<%@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" action="Profil">
<form name="frmIdentification" method="POST" action="">
<c:choose>
<c:when test="${empty param.ztPseudo}">
<fieldset><legend>Identification utilisateur</legend>
<br /><br />
<label for="nom">Nom du compte</label>
<input type="text" name="ztPseudo" size="30" maxlength="45" placeholder="Entrez votre nom d'Utilisateur">
<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 type="password" name="ztMDP" size="30" maxlength="45" placeholder="Entrez votre Mot de Passe">
<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">
@ -37,4 +33,4 @@
</form>
<br /><br/>
</div>
</html>

View File

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

View File

@ -1,3 +1,25 @@
<%--
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>
<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 />
</div>