root/trunk/myweb/WebContent/Confirmation.jsp

Revision 27, 1.4 KB (checked in by yabuki, 3 years ago)
  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<%@ page language="java" contentType="text/html; charset=UTF-8"
3    pageEncoding="UTF-8"%>
4<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
5<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
6<html xmlns="http://www.w3.org/1999/xhtml">
7<head>
8<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
9<title>プロフィールの確認</title>
10</head>
11<body>
12<p>プロフィールを確認してください</p>
13<form action="Register" method="post">
14  <table summary="profile">
15    <tr>
16      <td>姓</td>
17      <td><c:out value="${thePerson.lastName}" /></td>
18    </tr>
19    <tr>
20      <td>名</td>
21      <td><c:out value="${thePerson.firstName}" /></td>
22    </tr>
23    <tr>
24      <td>生年月日</td>
25      <td>
26        <c:out value="西暦${thePerson.year}年 ${thePerson.month}月 ${thePerson.date}日" />
27      </td>
28    </tr>
29    <tr>
30      <td>郵便番号</td>
31      <td><c:out value="${thePerson.zip}" /></td>
32    </tr>
33    <tr>
34      <td>住所</td>
35      <td><c:out value="${thePerson.address}" /></td>
36    </tr>
37    <tr>
38      <td></td>
39      <td>
40        <input type="submit" name="submit" value="完了" />
41        <input type="submit" name="submit" value="修正" />
42      </td>
43    </tr>
44  </table>
45</form>
46</body>
47</html>
Note: See TracBrowser for help on using the browser.