Conflicts: src/java/bdd/PompierMySql.java src/java/com/test/servlets/authentifServlet.java web/WEB-INF/CreaPompier.jsp
28 lines
860 B
Plaintext
28 lines
860 B
Plaintext
<%--
|
|
Document : accueilJSP
|
|
Created on : 18 oct. 2021, 10:56:46
|
|
Author : clementine.desrucques
|
|
--%>
|
|
<%@include file = "jspf/enteteJSPF.jspf" %>
|
|
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<%@page import="com.test.forms.AuthentifForm" %>
|
|
<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
|
|
|
|
|
|
|
</body>
|
|
<fieldset>
|
|
<legend>Authentification</legend>
|
|
<form method="POST" action="Authentification">
|
|
<input type="text" name="ztPseudo" placeholder="Pseudo" /><br /><!-- comment -->
|
|
<input type="password" name="ztMDP" placeholder="Mot de passe" /><br /><br />
|
|
<input type="submit" value="Valider" />
|
|
</form>
|
|
</fieldset>
|
|
|
|
<!-- Si l'utilisateur s'est authentifié,
|
|
Affichage du message contenu dans l'objet controlForm de type AuthentifForm -->
|
|
<p>${controlForm.getResultat()}</p>
|
|
<br />
|
|
|