confirmation.tpl
3.23 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-jp">
<title>クレジット決済 確認ページ</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script>
{literal}
function ok(){
document.frm.come_from.value = "kakunin";
document.frm.action = "confirmation.php";
document.frm.method = "POST";
document.frm.submit();
}
function bk(){
document.frm.action = document.frm.RetPage.value;
document.frm.method = "POST";
document.frm.submit();
}
{/literal}
</script>
</head>
<body>
<h1>クレジット決済 確認ページ</h1>
<font color="#FF0000" class="page_font">{$err_msg}</font>
<hr>
<h2>お支払い情報確認画面</h2>
<p>今回のご購入金額は以下のとおりです。</p><br>
<p>
■ご利用団体名:{$pg_user_name} 様<br>
■お名前:{$inpName} 様<br>
■メールアドレス:{$inpMail}
</p><br>
<div id="ta_bor">
<table width="611" cellpadding="0" cellspacing="0" border="0">
<tr>
<th width="261" scope="col">ご購入サービス</th>
<th width="177" scope="col">お支払い方法</th>
<th width="165" scope="col">ご購入金額</th>
</tr>
<tr>
<td>{$SERVICE_NAME}<br>
{$srvcName}</td>
<td>クレジットカード</td>
<td><div align="right">{$srvcMoney}</div></td>
</tr>
</table>
</div><br>
<p>内容をご確認の上、「確認」ボタンをクリックしてください。<br>
<br>
内容の変更を行う場合は、「戻る」ボタンをクリックしてください。</p>
<form name="frm" method="post" action="">
<input name="button" type="button" id="button" value=" 確 認 " onClick="ok();">
<input name="button2" type="button" id="button22" value=" 戻 る " onClick="bk();">
<input type="hidden" name="SrvcCD" value="{$SrvcCD}">
<input type="hidden" name="hidName" value="{$srvcName}">
<input type="hidden" name="hidPoint" value="{$hidPoint}">
<input type="hidden" name="hidMoney" value="{$hidMoney}">
<input type="hidden" name="RetPage" value="{$RetPage}">
<input type="hidden" name="selPoint" value="{$selPoint}">
<input type="hidden" name="inpMail" value="{$inpMail}">
<input type="hidden" name="inpName" value="{$inpName}">
<input type="hidden" name="come_from" value="">
<input type="hidden" name="pg_user_id" value="{$pg_user_id}">
<input type="hidden" name="pg_user_name" value="{$pg_user_name}">
{* イプシロン決済用データ *}
<input type="hidden" name="contract_code" value="{$contract_code}">
<input type="hidden" name="user_id" value="{$user_id}">
<input type="hidden" name="user_name" value="{$user_name}">
<input type="hidden" name="user_mail_add" value="{$user_mail_add}">
<input type="hidden" name="item_code" value="{$item_code}">
<input type="hidden" name="item_name" value="{$item_name}">
<input type="hidden" name="order_number" value="{$order_number}">
<input type="hidden" name="st_code" value="{$st_code}">
<input type="hidden" name="mission_code" value="{$mission_code}">
<input type="hidden" name="item_price" value="{$item_price}">
<input type="hidden" name="process_code" value="{$process_code}">
<input type="hidden" name="memo1" value="{$memo1}">
<input type="hidden" name="memo2" value="{$memo2}">
</form><br>
<hr>
<p><a href="notation.htm" title="特定商取引法に基づく表示" target="_blank">特定商取引法に基づく表示</a></p>
</body>
</html>