reasonableframework/view/view_orderpay.step2.pgkcp.php

41 lines
1.3 KiB
PHP
Raw Normal View History

2020-01-24 16:39:53 +00:00
<!DOCTYPE HTML>
2018-08-28 14:13:20 +00:00
<html>
2019-05-20 08:19:05 +00:00
<head>
<title>*** NHN KCP [AX-HUB Version] ***</title>
2020-01-24 16:39:53 +00:00
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
2019-05-20 08:19:05 +00:00
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="-1">
2018-08-28 14:13:20 +00:00
</head>
<body>
2019-05-20 08:19:05 +00:00
<form id="pay_info" name="pay_info" method="post" action="<?php echo $pgkcp_action_url; ?>">
<fieldset>
<legend>결제진행중</legend>
2018-08-28 14:13:20 +00:00
2019-05-20 08:19:05 +00:00
<div>
<input type="hidden" name="_token" value="<?php echo $_token; ?>">
<input type="hidden" name="route" value="<?php echo $_next_route; ?>">
</div>
2018-08-28 14:13:20 +00:00
2019-05-20 08:19:05 +00:00
<ul>
2018-08-28 14:13:20 +00:00
<?php
2019-05-20 08:19:05 +00:00
foreach($payinfo as $k=>$v) {
2018-08-28 14:13:20 +00:00
?>
2019-05-20 08:19:05 +00:00
<li>
<label for="<?php echo $k; ?>"><?php echo $k; ?></label>
<input id="<?php echo $k; ?>" name="<?php echo $k; ?>" value="<?php echo $v; ?>" readonly="readonly"/>
</li>
2018-08-28 14:13:20 +00:00
<?php
2019-05-20 08:19:05 +00:00
}
2018-08-28 14:13:20 +00:00
?>
2019-05-20 08:19:05 +00:00
</ul>
2018-08-28 14:13:20 +00:00
2019-05-20 08:19:05 +00:00
<button id="btn_submit" type="submit">Submit</button>
</fieldset>
</form>
2018-08-28 14:13:20 +00:00
2019-05-20 08:19:05 +00:00
<?php echo $jsoutput; ?>
</body>
2018-08-28 14:13:20 +00:00
</html>