diff --git a/src/java/com/test/forms/AuthentifForm.java b/src/java/com/test/forms/AuthentifForm.java index fa0ee26..997777d 100644 --- a/src/java/com/test/forms/AuthentifForm.java +++ b/src/java/com/test/forms/AuthentifForm.java @@ -24,15 +24,15 @@ public class AuthentifForm { this.resultat = resultat; } - public boolean controlerAdmin(HttpServletRequest request) { + public String AuthentifPompier(HttpServletRequest request) { String userSaisi = request.getParameter("ztPseudo"); String mdpSaisi = request.getParameter("ztMDP"); String mdpChiffre = MD5.encode(mdpSaisi); - String sql= + String sql= "Select login, mdp FROM pompier"; - return ; + return sql; } diff --git a/src/java/com/test/servlets/AuthentifServlet.java b/src/java/com/test/servlets/AuthentifServlet.java index 1e78fd0..50eec49 100644 --- a/src/java/com/test/servlets/AuthentifServlet.java +++ b/src/java/com/test/servlets/AuthentifServlet.java @@ -75,7 +75,7 @@ public class AuthentifServlet extends HttpServlet { // Création de l'objet leControle de type AuthentifForm AuthentifForm leControle = new AuthentifForm(); // Appel de la méthode controlerAdmin - boolean isAdmin = leControle.controlerAdmin(request); + String isAdmin = leControle.AuthentifPompier(request); // Création de 2 attributs de requête (isAdmin et leControle) request.setAttribute("isAdmin", isAdmin); request.setAttribute("controlForm", leControle); diff --git a/web/WEB-INF/ProfilJSP.jsp b/web/WEB-INF/ProfilJSP.jsp index 3a6fe72..cd26349 100644 --- a/web/WEB-INF/ProfilJSP.jsp +++ b/web/WEB-INF/ProfilJSP.jsp @@ -5,10 +5,10 @@
Coordonnées Pompier - - - - + + + + @@ -23,4 +23,7 @@
Adresse :
Ville :
Nom :
Prénom :
Adresse :
Ville :
Code postal :
Téléphone :
Mail :
Adresse employeur :
Mail employeur :
-
\ No newline at end of file + + + + \ No newline at end of file