forked from stephenjude/paystack-payout-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (24 loc) · 956 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h2>Summary</h2>
<table>
<tr><td>Cloths</td> <td> ₦1000</td></tr>
<tr><td>Shoes</td> <td>₦2000</td></tr>
<tr><td>Table</td> <td>₦500</td></tr>
<tr><td>Chairs</td> <td>₦200</td></tr>
<tr><td>Total</td> <td>₦3700</td></tr>
</table>
<button onclick="payWithPaystack()"> Pay </button>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="https://js.paystack.co/v1/inline.js"></script>
<script src="app.js"></script>
</body>
</html>