payunitjs-test
Version:
PayUnit is Seven's Payment aggregator created @SevenGroups by SevenGPS Core Engineers and tested by Silicon Valley professionals and Google experts
32 lines (28 loc) • 869 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PayUnit Paypal Payment</title>
<link rel="stylesheet" href="./payunitPaypal.css" />
</head>
<body>
<div id="mobile-paypal">
<div class="payUnit_test">
<h3>Pay With PayUnit</h3>
<h5 id="amount">Amount</h5>
<p>Please Click on the PayPal button below</p>
</div>
<div>
<div #paypal class="paypalButton" id="paypalButton"></div>
</div>
</div>
<script
src="https://www.paypal.com/sdk/js?client-id=AXEXNsZ-7j-TGqmLzp4ShPJMXJILkDdidR0n-uar57YkRkpbcMLPmPayuL4SrGG0XBidW-rh-wKkQEx2&components=buttons">
</script>
<script type="module">
import * as payment from "./payment.js";
payment.paypalPaymentHandler(window.location.href);
</script>
</body>
</html>