forked from Ruitha/IntaSend-Dynamic-Pay-Button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (47 loc) · 1.84 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>IntaSend Payment Button Test</title>
<!-- Add IntaSend SDK script -->
<script src="https://unpkg.com/[email protected]/build/intasend-inline.js"></script>
</head>
<body>
<h1>Test IntaSend Payment Button</h1>
<form id="payment-form">
<label for="amount">Enter Amount: </label>
<input type="number" id="amount" name="amount" min="1" required>
</form>
<!-- IntaSend Payment Button -->
<div>
<button
id="intasend-button"
class="intaSendPayButton"
data-amount="100"
data-currency="KES">
Pay with IntaSend
</button>
</div>
<script>
new window.IntaSend({
publicAPIKey: "ISPubKey_test_e767a17c-5afd-4a1b-8754-9415379df6b6",
live: false //set to true when going live
})
.on("COMPLETE", (results) => {console.log("Do something on success", results)})
.on("FAILED", (results) => {console.log("Do something on failure", results)})
.on("IN-PROGRESS", (results) => {console.log("Payment in progress status", results)})
document.getElementById('amount').addEventListener('input', function() {
var amount = document.getElementById('amount').value;
console.log(amount)
var intasendButton = document.getElementById('intasend-button');
/* sets attribute of data-amount of button to a new value */
intasendButton.setAttribute('data-amount', amount);
});
document.getElementById('intasend-button').addEventListener('click', function(){
console.log('btn clicked')
})
</script>
</body>
</html>