Compare commits

..

No commits in common. "3cfc1f99e4f4087e5b6af9b9309d0974841c66e5" and "0ec37013edd5425278a28b6c2e0d963c43b96137" have entirely different histories.

4 changed files with 5 additions and 8 deletions

View File

@ -34,4 +34,4 @@ public class AuthentifForm {
return reponse; return reponse;
} }
} }

View File

@ -30,8 +30,8 @@ public class ProfilServlet extends HttpServlet {
protected void processRequest(HttpServletRequest request, HttpServletResponse response) protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException { throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8"); response.setContentType("text/html;charset=UTF-8");
try ( PrintWriter out = response.getWriter()) try ( PrintWriter out = response.getWriter()) {
{ /* TODO output your page here. You may use following sample code. */
out.println("<!DOCTYPE html>"); out.println("<!DOCTYPE html>");
out.println("<html>"); out.println("<html>");
out.println("<head>"); out.println("<head>");

View File

@ -26,6 +26,6 @@
<p>${message}</p> <p>${message}</p>
</fieldset> </fieldset>
</form> </form>
<br/><br/> <br /><br/>
</div> </div>
</html> </html>

View File

@ -1,6 +1,5 @@
<%@include file="jspf/enteteJSPF.jspf" %> <%@include file="jspf/enteteJSPF.jspf" %>
<br /><br /> <br /><br />
<form name="frmModifProfil" method="POST" action="ModifProfilJSP.jsp">
<table style='border: 0px solid white;'> <table style='border: 0px solid white;'>
<tr> <tr>
<td style='border :0px;'> <td style='border :0px;'>
@ -25,8 +24,6 @@
<tr><th>Mail employeur : <input readonly type="text" name="ztMailEmp" size="20" maxlength="30"></th></tr> <tr><th>Mail employeur : <input readonly type="text" name="ztMailEmp" size="20" maxlength="30"></th></tr>
</table> </table>
</fieldset> </fieldset>
<input type="button" name="button" onclick="window.location='http://localhost:8080/AP31-Projet1/Modif'" value="Modification du profil">
</td> </td>
</tr> </tr>
</table> </table>
</form>