├── README.md ├── style.css ├── index.html ├── LICENSE ├── verify.php └── app.js /README.md: -------------------------------------------------------------------------------- 1 | # Paystack Checkout Form 2 | 3 | This is for integrating Paystack payout system for any website using jQuery and PHP. 4 | To get started you need to sign up on [Paystack](https://dashboard.paystack.com) website. 5 | Follow my tutorial on [Meduim](https://medium.com/@stephenjudesuccess/how-to-integrate-paystack-checkout-in-5mins-with-only-html-css-js-84d25ca4d6ef) for more infomation on how to setup Paystack payment. 6 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | padding: 0; 3 | margin: 0; 4 | } 5 | h1, h2, h3{ 6 | text-align: left; 7 | font-size: 36px; 8 | } 9 | .container{ 10 | width: 400px !important; 11 | margin: 20px auto; 12 | } 13 | 14 | .container table{ 15 | width: 100% !important; 16 | border: 1px solid #ccc !important; 17 | border-radius: 5px; 18 | margin: 5px 0; 19 | } 20 | 21 | .container table tr td{ 22 | padding: 10px 10px; 23 | font-size: 18px; 24 | } 25 | 26 | .container button{ 27 | width: 100% !important; 28 | padding: 10px; 29 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 |

Summary

14 | 15 | 16 | 17 | 18 | 19 | 20 |
Cloths ₦1000
Shoes ₦2000
Table ₦500
Chairs ₦200
Total ₦3700
21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2018 Stephen Jude 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /verify.php: -------------------------------------------------------------------------------- 1 |