pointUseConfirm.html 1.28 KB
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
#set($title = "ポイント交換申請確認")
<!-- preHeader -->
#parse( "/WEB-INF/view/common/preHeader_sp.vm" )
<script language="JavaScript" type="text/JavaScript">
<!--
    function back(){
		document.forms[0].action="#q('/user/pointUse/pointUse')";
		document.forms[0].submit();
	}
-->
</script>

<body>
<div data-role="page" id="pointUseIndex" data-theme="f">
<!--ヘッダー-->
#parse( "/WEB-INF/view/common/header_sp.vm" )

<!--コンテンツ-->
#set($point-url = $tools.getSecureUrl('/user/pointUse/regist/'))
<form action="$!point-url" method="post" data-ajax="false">
#makeToken()
<div class="category" data-role="content" data-theme="d">
	<h2>ポイント交換申請確認</h2>
	<h3>入力内容確認</h3>
	<p>入力した内容を確認して、よろしければ下のポイント交換申請ボタンを押してください。</p>

	<h4>枚数</h4>
	<div class="bg_blue">
	#foreach($gift in $!pointUseForm.giftList)
		#if($gift.giftId == $!pointUseForm.giftId)
			$gift.giftName
		#end
	#end
	</div>
	<input type="hidden" name="giftId" value="$!giftId"/>
	<input value="交換" type="submit">
	<a href="#" onclick="back();" data-role="button" data-theme="b" data-ajax="false">戻る</a>
</div>

</form>

<!--フッター-->
#parse( "/WEB-INF/view/common/footer_sp.vm" )
</div>

</body>
</html>