-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
53 lines (53 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PesaQR Demo</title>
<script type="module" src="/dist/pesaqr.js"></script>
<style>
.qr-container {
display: flex;
justify-content: space-around;
align-items: center;
gap: 20px;
padding: 20px;
}
.qr-item {
text-align: center;
}
</style>
</head>
<body>
<div class="qr-container">
<div class="qr-item">
<h3>Till Payment</h3>
<pesa-qr
type="till"
tillNumber="8119170"
amount="100"
width="700"
></pesa-qr>
</div>
<div class="qr-item">
<h3>Paybill Payment</h3>
<pesa-qr
type="paybill"
paybillNumber="888880"
accountNumber="YOURACCOUNTNUMBER"
amount="100"
width="700"
></pesa-qr>
</div>
<div class="qr-item">
<h3>Phone Payment</h3>
<pesa-qr
type="phone"
phoneNumber="0712345678"
amount="100"
width="700"
></pesa-qr>
</div>
</div>
</body>
</html>