From e17ad78fbbde71fd9615a744b857b79a692587de Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Wed, 11 Apr 2018 15:59:05 +0200 Subject: [PATCH] exo8: fixlets MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- ROOT/exo8/getinfos.jsp | 11 +++++++++++ ROOT/exo8/saveinfos.jsp | 5 +---- 2 files changed, 12 insertions(+), 4 deletions(-) create mode 100644 ROOT/exo8/getinfos.jsp diff --git a/ROOT/exo8/getinfos.jsp b/ROOT/exo8/getinfos.jsp new file mode 100644 index 0000000..f1c9ef3 --- /dev/null +++ b/ROOT/exo8/getinfos.jsp @@ -0,0 +1,11 @@ +<%@ page contentType="text/html" pageEncoding="UTF-8" %> + + + + + Prénom: <%= user.getFirstname() %>
+ Nom: <%= user.getLastname() %>
+ Email: <%= user.getEmail() %>
+ Age: <%= user.getAge() %>
+ + diff --git a/ROOT/exo8/saveinfos.jsp b/ROOT/exo8/saveinfos.jsp index 8ddc1a9..a1d223c 100644 --- a/ROOT/exo8/saveinfos.jsp +++ b/ROOT/exo8/saveinfos.jsp @@ -4,9 +4,6 @@ - Prénom: <%= user.getFirstname() %>
- Nom: <%= user.getLastname() %>
- Email: <%= user.getEmail() %>
- Age: <%= user.getAge() %>
+ Continue -- 2.34.1