[pal-cvs 2605] [337]

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2007年 7月 23日 (月) 09:05:25 JST


Revision: 337
          http://svn.sourceforge.jp/cgi-bin/viewcvs.cgi?root=pal&view=rev&rev=337
Author:   takeharu
Date:     2007-07-23 09:05:24 +0900 (Mon, 23 Jul 2007)

Log Message:
-----------


Modified Paths:
--------------
    pompei/trunk/src/main/webapp/view/admin/member/memberConfirm.html
    pompei/trunk/src/main/webapp/view/admin/member/memberEdit.html
    pompei/trunk/src/main/webapp/view/admin/member/memberList.html


-------------- next part --------------
Modified: pompei/trunk/src/main/webapp/view/admin/member/memberConfirm.html
===================================================================
--- pompei/trunk/src/main/webapp/view/admin/member/memberConfirm.html	2007-07-23 00:04:52 UTC (rev 336)
+++ pompei/trunk/src/main/webapp/view/admin/member/memberConfirm.html	2007-07-23 00:05:24 UTC (rev 337)
@@ -7,13 +7,48 @@
 </head>
 <body>
 <input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/>
-<h2><span id="title">会員情報編集</span></h2>
+<h2><label id="title">会員情報編集画面</label></h2>
+<hr/>
 <form id="form" method="POST">
 <table border="1">
 	<tr style="dummy" height="20px">
-		<th>氏名</th><td><span id="">小幡 績</span></td>
+		<th>氏名</th>
+		<td><span id="customersFirstname">山田</span> <span id="customersLastname">太郎</span></td>
 	</tr>
+	<tr style="dummy" height="20px">
+		<th>性別</th>
+		<td><span id="genderLabel">男</span></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>パスワード</th>
+		<td><input type="password" id="customersPassword" maxlength="40"/></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>パスワード(再入力)</th>
+		<td><input type="password" id="customersPassword-retype" maxlength="40"/></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>生年月日</th>
+		<td>(例)19760408<br/><input type="text" id="customersDob" size="6" maxlength="8"/></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>Eメールアドレス</th>
+		<td>hoge****@hoge*****<br/><input type="text" id="customersEmailAddress" size="40" maxlength="96"/></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>電話番号</th>
+		<td>(例)99-9999-9999<br/><input type="text" id="customersTelephone" size="34" maxlength="32"/></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>FAX番号</th>
+		<td>(例)99-9999-9999<br/><input type="text" id="customersFax" size="34" maxlength="32"/></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>メルマガ配信</th>
+		<td><select id=""><option value="0">希望しない</option><option value="1">希望する</option></select></td>
+	</tr>
 </table>
+
 <hr/>
 <strong><label>会員住所</label></strong>
 <table border="1">
@@ -71,7 +106,7 @@
 </table>
 
 <hr/>
-<input type="submit" id="goMemberList" value="登録" onclick="location.href='./memberConfirm.html'"/>
-<input type="submit" id="goMemberEdit" value="戻る" onclick="location.href='./memberConfirm.html'"/>
+<input type="submit" id="doUpdate" value="登録する" onclick="location.href='./memberConfirm.html'"/>
+<input type="submit" id="jumpMemberEdit" value="編集画面に戻る" onclick="location.href='./memberConfirm.html'"/>
 </form>
 </body></html>
\ No newline at end of file

Modified: pompei/trunk/src/main/webapp/view/admin/member/memberEdit.html
===================================================================
--- pompei/trunk/src/main/webapp/view/admin/member/memberEdit.html	2007-07-23 00:04:52 UTC (rev 336)
+++ pompei/trunk/src/main/webapp/view/admin/member/memberEdit.html	2007-07-23 00:05:24 UTC (rev 337)
@@ -7,82 +7,84 @@
 </head>
 <body>
 <input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/>
-<h2><span id="title">会員情報編集</span></h2>
+<h2><label id="title">会員情報編集</label></h2>
+<hr />
 <form id="form" method="POST">
+<input type="hidden" id="mode"/>
+<div><span id="allMessages"></span></div>
 <table border="1">
 	<tr style="dummy" height="20px">
-		<th>氏名</th><td>姓<input type="text" id="" size="6" />名<input type="text" id="" size="6"/></td>
+		<th>氏名*</th>
+		<td>姓<input type="text" id="customersFirstname" size="6" maxlength="32" /> 名<input type="text" id="customersLastname" size="6" maxlength="32"/></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>パスワード</th><td><input type="password" id="pass1" /></td>
+		<th>性別*</th>
+		<td><select id="gender"><option value="1">男</option><option value="2">女</option></select></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>パスワード(再入力)</th><td><input type="password" id="pass2" /></td>
+		<th>パスワード*</th>
+		<td><input type="password" id="customersPassword" maxlength="40"/></td>
 	</tr>
-</table>
-<hr/>
-<strong><label>会員住所</label></strong>
-<table border="1">
 	<tr style="dummy" height="20px">
-		<th>会社名</th><td><input type="text" id="" /></td>
+		<th>パスワード(再入力)*</th>
+		<td><input type="password" id="customersPassword-retype" maxlength="40"/></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>部署名</th><td><input type="text" id="" /></td>
+		<th>生年月日*</th>
+		<td>(例)19760408<br/><input type="text" id="customersDob" size="6" maxlength="8"/></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>郵便番号</th><td><input type="text" id="post1" size="3" maxlength="3"/>-<input type="text" id="post2" size="4" maxlength="4"/></td>
+		<th>Eメールアドレス*</th>
+		<td>hoge****@hoge*****<br/><input type="text" id="customersEmailAddress" size="40" maxlength="96"/></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>都道府県</th>
-		<td>
-		<select>
-		<option value="0"> </option>
-		<option value="1">東京都</option>
-		<option value="2">神奈川県</option>
-		</select>
-		</td>
+		<th>電話番号*</th>
+		<td>(例)99-9999-9999<br/><input type="text" id="customersTelephone" size="34" maxlength="32"/></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>市区町村</th><td><input type="text" id="city" size="20" maxlength="40" /></td>
+		<th>FAX番号</th>
+		<td>(例)99-9999-9999<br/><input type="text" id="customersFax" size="34" maxlength="32"/></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>番地</th><td><input type="text" id="street" /></td>
+		<th>メルマガ配信</th>
+		<td><select id=""><option value="0">希望しない</option><option value="1">希望する</option></select></td>
 	</tr>
-	<tr style="dummy" height="20px">
-		<th>マンション名など</th><td><input type="text" id="pass2" /></td>
-	</tr>
 </table>
 <hr/>
-<strong><label>お届け先</label></strong><label>(住所が異なる場合のみ入力)</label>
+<strong><label>会員住所</label></strong>
 <table border="1">
 	<tr style="dummy" height="20px">
-		<th>名前</th><td><input type="text" id="categoriesName" /></td>
+		<th>会社名</th><td><input type="text" id="entryCompany" /></td>
 	</tr>
+<!--
 	<tr style="dummy" height="20px">
-		<th>郵便番号</th><td><input type="text" id="post1" size="3" maxlength="3"/>-<input type="text" id="post2" size="4" maxlength="4"/></td>
+		<th>部署名</th><td><input type="text" id="" /></td>
 	</tr>
+-->
 	<tr style="dummy" height="20px">
-		<th>都道府県</th>
+		<th>郵便番号*</th>
+		<td><input type="text" id="entryPostcode1" size="1" maxlength="3" />-<input type="text" id="entryPostcode2" size="1" maxlength="4"/></td>
+	</tr>
+	<tr style="dummy" height="20px">
+		<th>都道府県*</th>
 		<td>
-		<select>
-		<option value="0"> </option>
-		<option value="1">東京都</option>
-		<option value="2">神奈川県</option>
+		<select id="entryZoneId">
+		<option value="1">北海道</option>
 		</select>
 		</td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>市区町村</th><td><input type="text" id="city" size="20" maxlength="40" /></td>
+		<th>市区町村*</th><td><input type="text" id="entryCity" size="20" maxlength="40" /></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>番地</th><td><input type="text" id="street" /></td>
+		<th>住所1*</th><td><input type="text" id="entryStreetAddress" /></td>
 	</tr>
 	<tr style="dummy" height="20px">
-		<th>マンション名など</th><td><input type="text" id="pass2" /></td>
+		<th>住所2</th><td><input type="text" id="entrySuburb" /></td>
 	</tr>
 </table>
 <hr/>
-<input type="submit" id="goMemberConfirm" value="確認" onclick="location.href='./memberConfirm.html'"/>
-<input type="button" id="goMemberList" value="戻る" onclick="location.href='./memberConfirm.html'"/>
+<input type="submit" id="doUpdate" value="確認画面へ" onclick="location.href='./memberConfirm.html'"/>
+<input type="button" id="jumpMemberList" value="一覧に戻る" onclick="location.href='./memberConfirm.html'"/>
 </form>
 </body></html>
\ No newline at end of file

Modified: pompei/trunk/src/main/webapp/view/admin/member/memberList.html
===================================================================
--- pompei/trunk/src/main/webapp/view/admin/member/memberList.html	2007-07-23 00:04:52 UTC (rev 336)
+++ pompei/trunk/src/main/webapp/view/admin/member/memberList.html	2007-07-23 00:05:24 UTC (rev 337)
@@ -7,7 +7,7 @@
 </head>
 <body>
 <input type="button" value="トップページへ" onclick="location.href='/pompei/view/index.html'"/>
-<h2><span id="title">会員一覧</span></h2>
+<h2><label id="title">会員一覧</label></h2>
 <form id="form" method="POST">
 <hr />
 <div id="searchParams">
@@ -43,6 +43,7 @@
 	</tbody>
 	<tfoot></tfoot>
 </table>
-<input type="submit" id="goMemberEdit-add" value="追加" onclick="location.href='./memberConfirm.html'"/>
+<br/>
+<input type="submit" id="goMemberEdit-add" value="会員を追加する" onclick="location.href='./memberConfirm.html'"/>
 </form>
 </body></html>
\ No newline at end of file


pal-cvs メーリングリストの案内
Back to archive index