ipayment_checkout.tpl

来自「太烦了」· TPL 代码 · 共 57 行

TPL
57
字号
{strip}
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
	<tr>
		<td class="module_detail" width="100%">
			{assign var="page_hdr01_text" value="{lang mkey='confirmation'}"}
			{include file="page_hdr01.tpl"}

<form action="https://ipayment.de/merchant/{$trx_id}/processor.php" method="post">
<input type="hidden" name="silent" value="1" />
<input type="hidden" name="trx_paymenttyp" value="cc" />
<input type="hidden" name="trxuser_id" value="{$trxuser_id}" />
<input type="hidden" name="trxpassword" value="{$trxpassword}" />
<input type="hidden" name="item_name" value="{$item_name}" />
<input type="hidden" name="trx_currency" value="{$currency}" />
<input type="hidden" name="trx_amount" value="{$amount}" />
<input type="hidden" name="cc_expdate_month" value="{$cc_expiry_month}" />
<input type="hidden" name="cc_expdate_year" value="{$cc_expiry_year}" />
<input type="hidden" name="cc_number" value="{$cc_number}" />
<input type="hidden" name="cc_checkcode" value="{$cvv}" />
<input type="hidden" name="addr_name" value="{$cc_owner}" />
<input type="hidden" name="redirect_url" value="http://{$smarty.server.SERVER_NAME}{$docroot}checkout_process.php?pay_mod=ipayment" />
<input type="hidden" name="silent_error_url" value="http://{$smarty.server.SERVER_NAME}{$docroot}checkout_process.php?pay_mod=ipayment" />


			{* used by checkout_process.php to validate order *}
			<input type="hidden" name="cart_order_id" value="{$invoice_num}" />

			<input type="hidden" name="level_name" value="{$item_name}" />
			<input type="hidden" name="user_id" value="{$smarty.session.UserId}" />
			<input type="hidden" name="user_level" value="{$item_no}" />

			<table border="0" cellpadding="{$config.cellpadding}" cellspacing="{$config.cellspacing}" width="100%">
				<tr>
					<td width="100%">

						<table width="400">
							<tr><td colspan="2"><b>{$payment_method} {$cc_type}</b></td></tr>
							<tr><td>{lang mkey='cc_owner'}</td><td>{$cc_owner}</td></tr>
							<tr><td>{lang mkey='cc_number'}</td><td>{$cc_part1}XXXXXXXX{$cc_part2}</td></tr>
							<tr><td>{lang mkey='cc_exp_date'}</td><td>{$cc_expiry_month}, {$cc_expiry_year}</td></tr>
							<tr><td>{lang mkey='amount'}</td><td>{mylang mkey='support_currency' skey=$currency}{$amount}</td></tr>
							<tr><td colspan="2">{lang mkey='change_mship_to'} <b>{$item_name}</b>.</td></tr>
						</table>

					</td>
				</tr>
				<tr>
					<td><input type="submit" class="formbutton" value="{lang mkey='confirm'}" /></td>
				</tr>
			</table>
			</form>

		</td>
	</tr>
</table>
{/strip}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?