memberConfirm.html 4.21 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#set($title = "会員番号確認画面")
<!-- preHeader -->
#parse( "/WEB-INF/view/common/preHeader.vm" )
##<!-- JAVASCRIPTはここに記載 -->
<style>
.memberNum {
	width:170px;
	height:22px;
	border:none;
	outline:none;
	padding:0px 0px 0px 10px;
	font-size:25px;
	letter-spacing:0.2em;
}
</style>
<script language="JavaScript" type="text/JavaScript">
<!--
function back(){
19
	document.forms[0].action="#q('/user/pointUse/pointUse')?giftExchangeInfoId=2&uEditEndFlg";
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
	document.forms[0].submit();
}

function memberRegistPage() {
	document.forms[0].action="#q('/user/pointUse/memberRegistPage/')";
	document.forms[0].submit();
}
-->
</script>

<body bgcolor="#B3C9E1" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<center>
<!-- header -->
<table width="1024"  cellspacing="0" cellpadding="0">
	<tr>
		<TD>#parse( "/WEB-INF/view/common/header.vm" )</TD>
	</tr>
	<tr>
		<TD>
			<table width="1024" border="0" cellspacing="0" cellpadding="0">
				<tr>
41
			   <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
42 43 44
				    <td width="1024" bgcolor="#FFFFFF">
				    <table width="100%" border="0" cellspacing="5" cellpadding="0">
					    <tr>
45 46
					        <td align="right">#parse( "/WEB-INF/view/common/menu.vm" )</td>
					        <td align="left"></td>
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
					        <td align="center" valign="top">
##CONTENT START 各ページコンテンツ
<table width="780" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="ctsTitle">ポイント利用</td>
</tr>
</table>
<!-- Contents Title Table End -->

<form name="mainForm" method="post" action="/em/user/pointUse/memberConfirm/" >
<BR><BR><BR>
<input type="hidden"  name="giftType" value="$!pointUseForm.giftType">
<input type="hidden"  name="giftId" value="$!pointUseForm.giftId">
#foreach($gift in $!pointUseForm.giftList)
	<input type="hidden" name="giftList[$velocityCount].giftId" value="$gift.giftId"/>
	<input type="hidden" name="giftList[$velocityCount].giftName" value="$gift.giftName"/>
#end

<table width="400px" border="0" cellpadding="2" cellspacing="1" bgcolor="#004080">
<tr>
Kazuki Nakamura committed
67
	<td class="listmenu tahoma" align="center">ICHICO会員コード</td>
68 69 70 71 72 73 74
	<td class="tahoma"bgcolor="#ffffff">
		<input class="memberNum" type="text" id=memberNum name=memberNum value="$!pointUseForm.memberNum" maxlength="8" size="8">
	</td>
</tr>
</TABLE>
#errmsg()

75
<br>
76 77 78
	## 次へ(確認)ボタン
	<table width="70%" border="0" cellspacing="2" cellpadding="0">
		<TR><TD align="center">アプリ利用者でもカード利用者でもご利用できます。</TD></TR>
79
		<TR><TD><font color="blue"><b>
80 81 82
			入力された番号にICHICOポイントが反映されますので、
			希望される会員番号と相違ないかご確認をお願いいたします。
			ポイント交換申請後はいかなる場合でも変更・取消はお受けできませんのでご了承ください。
83
		</b></font></TD></TR>
84 85 86 87 88 89
		<TR><TD align="center"><font color="#FF0000"></font>&nbsp;</TD></TR>
		<TR>
		    <TD align="center">
		    	<input class="nextBtn" type="submit"  value="次へ">
		    </TD>
		</TR>
Kazuki Nakamura committed
90
		## ICHICO会員コードが無い場合のリンク
91 92
		<TR>
		    <TD align="center"><br><br>
Kazuki Nakamura committed
93
		    	ICHICO会員コードをお持ちでない方は<a href="#" onclick="memberRegistPage()">こちら</a>
94 95 96
		    </TD>
		</TR>
	</TABLE><br>
Kazuki Nakamura committed
97
	<font color="red">$!errMsgForMemberCardReceipt</font>
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
	
##CONTENT END 各ページコンテンツ
					        <!-- Button Table Start 点線-->
							<table width="780" border="0" cellspacing="5" cellpadding="0">
								<tr>
									<td background="/em/images/cts_btnbar.gif"><img src="/em/images/spacer.gif" width="1" height="10" border="0"></td>
								</tr>
							</table>
							<table width="780" cellspacing="5" cellpadding="0" border="0">
								<tr>
								<td align="left">
								<input type="image" border="0" align="absmiddle" src="/em/images/back_btn.gif" onclick="back();">
								</td>
								</tr>
							</table>
							<!-- Button Table End -->
					        </td>
					    </tr>
				    </table>
				    </td>
118
			   <td width="25"><img src="/em/images/spacer.gif" width="25" height="1" border="0"></td>
119 120 121 122 123 124 125 126 127 128 129 130
				</tr>
			</table>
		</TD>
	</tr>
	<tr>
		<TD>#parse( "/WEB-INF/view/common/footer.vm" )</TD>
	</tr>
</table>

</center>
</body>
</html>