|
Revision 27, 1.8 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 | <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> |
|---|
| 4 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|---|
| 5 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 6 | <head> |
|---|
| 7 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> |
|---|
| 8 | <title>プロフィール登録</title> |
|---|
| 9 | </head> |
|---|
| 10 | <body> |
|---|
| 11 | <p>プロフィールを入力してください</p> |
|---|
| 12 | <form action="Register" method="post"> |
|---|
| 13 | <table summary="profile"> |
|---|
| 14 | <tr> |
|---|
| 15 | <td>姓</td> |
|---|
| 16 | <td><input type="text" name="lastName" value='<c:out value="${thePerson.lastName}" />' /> |
|---|
| 17 | </td> |
|---|
| 18 | </tr> |
|---|
| 19 | <tr> |
|---|
| 20 | <td>名</td> |
|---|
| 21 | <td><input type="text" name="firstName" value='<c:out value="${thePerson.firstName}" />' /> |
|---|
| 22 | </td> |
|---|
| 23 | </tr> |
|---|
| 24 | <tr> |
|---|
| 25 | <td>生年月日</td> |
|---|
| 26 | <td>西暦 |
|---|
| 27 | <input type="text" name="year" value='<c:out value="${thePerson.year}" />' size="4"/>年 |
|---|
| 28 | <input type="text" name="month" value='<c:out value="${thePerson.month}" />' size="2"/>月 |
|---|
| 29 | <input type="text" name="date" value='<c:out value="${thePerson.date}" />' size="2"/>日 |
|---|
| 30 | </td> |
|---|
| 31 | </tr> |
|---|
| 32 | <tr> |
|---|
| 33 | <td>郵便番号</td> |
|---|
| 34 | <td> |
|---|
| 35 | <input type="text" name="zip" value='<c:out value="${thePerson.zip}" />' size="8" /> |
|---|
| 36 | <input type="submit" name="submit" value="住所を検索" /> |
|---|
| 37 | </td> |
|---|
| 38 | </tr> |
|---|
| 39 | <tr> |
|---|
| 40 | <td>住所</td> |
|---|
| 41 | <td><input type="text" name="address" value='<c:out value="${thePerson.address}" />' size="50"/> |
|---|
| 42 | </td> |
|---|
| 43 | </tr> |
|---|
| 44 | <tr> |
|---|
| 45 | <td></td> |
|---|
| 46 | <td><input type="submit" name="submit" value="登録" /></td> |
|---|
| 47 | </tr> |
|---|
| 48 | </table> |
|---|
| 49 | </form> |
|---|
| 50 | </body> |
|---|
| 51 | </html> |
|---|