@paydock/client-sdk
Version:
Paydock client sdk
37 lines (29 loc) • 687 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
iframe {
border: 0;
width: 100%;
height: 300px;
}
</style>
</head>
<body>
<form method="get">
<h1>Widget in your form</h1>
<div id="widget"></div>
<input type="hidden" name="payment_source" />
<p>Your content and inputs....</p>
<button type="submit">Submit in your form</button>
</form>
<script src="https://widget.paydock.com/sdk/latest/widget.umd.min.js" ></script>
<script>
var widget = new paydock.HtmlWidget('#widget', 'publicKey', 'gatewayId');
widget.onFinishInsert('[name="payment_source"]', 'payment_source');
widget.load();
</script>
</body>
</html>