-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.php
141 lines (127 loc) · 6.39 KB
/
index.php
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!--
-- Developed by Nnaemeka Nweke.
-- I am a software engineer open for freelance work.
-- You can reach on Twitter @codegenty
-- I am also avalibale on linkedin // https://www.linkedin.com/in/nnaemekanweke
-- My email address [email protected]
-->
</!DOCTYPE html>
<head>
<title>Flutterwave Payment Gateway</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style type="text/css"></style>
</head>
<body>
<!-- Top header -->
<div class="w-50 px-3 py-3 pt-md-4 pb-md-4 mx-auto text-center">
<h1 class="display-4 font-weight-bold">Flutterwave</h1>
</div>
<!-- Send payment to the payment processor -->
<form action="pay.php" method="POST">
<div class="w-50 px-3 py-3 pt-md-4 pb-md-4 mx-auto text-center">
<p class="lead">
<input type="text" name="name" class="form-control" placeholder="Your Name" required>
</p>
<p class="lead">
<input type="text" name="email" class="form-control" placeholder="Your Email Address" required>
</p>
</div>
<!-- Cards container -->
<div class="container text-center">
<div class="row">
<!-- Card #1, Starter -->
<div class="col-lg-4 col-md-6 col-sm-10 pb-4 d-block m-auto">
<div class="pricing-item" style="box-shadow: 0px 0px 30px -7px rgba(0,0,0,0.29);">
<!-- Indicator of subscription type -->
<div class="pt-4 pb-3" style="letter-spacing: 2px">
<h4>Starter</h4>
</div>
<!-- Price class -->
<div class="pricing-price pb-1 text-primary color-primary-text ">
<h1 style="font-weight: 1000; font-size: 3.5em;">
<span style=" font-size: 20px;">₦</span>2,500
</h1>
</div>
<!-- Perks of said subscription -->
<div class="pricing-description">
<ul class="list-unstyled mt-3 mb-4">
<li class="pl-3 pr-3">30 users included</li>
<li class="pl-3 pr-3">15 GB of storage</li>
<li class="pl-3 pr-3">Phone and email support</li>
<li class="pl-3 pr-3">Help center access</li>
</ul>
</div>
<!-- Button -->
<div class="pricing-button pb-4">
<lable class="btn btn-lg btn-primary w-75">
<input type="radio" name="options" value="2500" class="btn btn-lg btn-primary w-25">Select plan
</lable>
</div>
</div>
</div>
<!-- Card #2, Intermediate -->
<div class="col-lg-4 col-md-6 col-sm-10 pb-4 d-block m-auto">
<div class="pricing-item" style="box-shadow: 0px 0px 30px -7px rgba(0,0,0,0.29);">
<div class="pt-4 pb-3" style="letter-spacing: 2px">
<h4>Intermediate</h4>
</div>
<div class="pricing-price pb-1 text-primary color-primary-text ">
<h1 style="font-weight: 1000; font-size: 3.5em;">
<span style="font-size: 20px;">₦</span>5,000
</h1>
</div>
<div class="pricing-description">
<ul class="list-unstyled mt-3 mb-4">
<li class="pl-3 pr-3">30 users included</li>
<li class="pl-3 pr-3">15 GB of storage</li>
<li class="pl-3 pr-3">Phone and email support</li>
<li class="pl-3 pr-3">Help center access</li>
</ul>
</div>
<div class="pricing-button pb-4">
<lable class="btn btn-lg btn-primary w-75">
<input type="radio" name="options" value="5000" class="btn btn-lg btn-primary w-25">Select plan
</lable>
</div>
</div>
</div>
<!-- Card #3, Professional -->
<div class="col-lg-4 col-md-6 col-sm-10 pb-4 d-block m-auto">
<div class="pricing-item" style="box-shadow: 0px 0px 30px -7px rgba(0,0,0,0.29);">
<div class="pt-4 pb-3" style="letter-spacing: 2px">
<h4>Professional</h4>
</div>
<div class="pricing-price pb-1 text-primary color-primary-text ">
<h1 style="font-weight: 1000; font-size: 3.5em;">
<span style="font-size: 20px;">₦</span>10,500
</h1>
</div>
<div class="pricing-description">
<ul class="list-unstyled mt-3 mb-4">
<li class="pl-3 pr-3">30 users included</li>
<li class="pl-3 pr-3">15 GB of storage</li>
<li class="pl-3 pr-3">Phone and email support</li>
<li class="pl-3 pr-3">Help center access</li>
</ul>
</div>
<div class="pricing-button pb-4">
<lable class="btn btn-lg btn-primary w-75">
<input type="radio" name="options" value="10500" class="btn btn-lg btn-primary w-25">Select plan
</lable>
</div>
</div>
</div>
<div style="margin: auto;">
<button type="submit" name="pay" class="btn btn-lg btn-success w-95">Get started</button>
</div>
</form>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js"
integrity="sha384-pjaaA8dDz/5BgdFUPX6M/9SUZv4d12SUPF0axWc+VRZkx5xU3daN+lYb49+Ax+Tl"
crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
</body>
</html>