-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpricing.php
More file actions
272 lines (232 loc) · 14.1 KB
/
pricing.php
File metadata and controls
272 lines (232 loc) · 14.1 KB
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Our Pricing</title>
<link rel="stylesheet" href="css/pricing-style.css">
<link rel="stylesheet" href="css/style.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/fa-fonts.css">
</head>
<body>
<div class="splash" style="padding-bottom:10px">
<!-- TOP NAV BAR START -->
<nav class="navbar navbar-icon-top navbar-expand-lg">
<a class="navbar-brand" href="main.php"
style="font-family: Caviar Dreams; font-size: 33px; margin-top: 30px; color: rgb(231, 69, 69)">DiagnoX.ai</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul style="list-style-type: none;" style="list-style-type: none;" class="navbar-nav mr-auto">
<li class="nav-item active">
<a style="
text-decoration: none;" class="nav-link" href="main.php">
<i class="fa fa-home"></i>
Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a style="
text-decoration: none;" class="nav-link" href="diagnose.php">
<i class="fa fa-plus-square">
<!-- <span class="badge badge-danger">11</span> -->
</i>
Try Demo
</a>
</li>
<li class="nav-item">
<a style="
text-decoration: none;" class="nav-link" href="pricing.php">
<i class="fa fa-usd">
<!-- <span class="badge badge-danger">11</span> -->
</i>
Pricing
</a>
</li>
<li class="nav-item dropdown">
<a style="
text-decoration: none;" class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button"
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-building">
<!-- <span class="badge badge-primary">11</span> -->
</i>
Company
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a style="
text-decoration: none; margin-bottom: 15px" class="dropdown-item" href="#">About US</a>
<div class="dropdown-divider"></div>
<a style="
text-decoration: none;" class="dropdown-item" href="#">Something else here</a>
</div>
</li>
<li class="nav-item">
<a style="
text-decoration: none;" class="nav-link" href="contact-form.php">
<i class="fa fa-envelope">
<span class="badge badge-danger">11</span>
</i>
Contact
</a>
</li>
<!-- <li class="nav-item">
<a style="
text-decoration: none;" class="nav-link disabled" href="#">
<i class="fa fa-envelope-o">
<span class="badge badge-warning">11</span>
</i>
Disabled
</a>
</li> -->
<!-- <li class="nav-item dropdown">
<a style="
text-decoration: none;" class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-envelope-o">
<span class="badge badge-primary">11</span>
</i>
Dropdown
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a style="
text-decoration: none;" class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li> -->
</ul>
<div class="header-right">
<ul style="list-style-type: none;" class="navbar-nav">
<li class="nav-item">
<?php if(isset($_SESSION['email'])==null)
{
echo '<a style="
text-decoration: none;" class="nav-link" href="login.php">
<i class="fa fa-sign-in">
</i>';
echo "Login";
}
else {
echo '<a style="
text-decoration: none; color:orange;" class="nav-link" href="logout.php">
<i class="fa fa-sign-out">
</i>';
echo 'Logout';
echo "<br>";
if(isset($_SESSION['email'])) echo $_SESSION['email'];
}
?>
</a>
</li>
<li class="nav-item">
<?php if(isset($_SESSION['email'])==null)
{
echo' <a style="
text-decoration: none;" class="nav-link" href="register.php">
<i class="fa fa-user-plus">
</i>
Register
</a>';
}
?>
</li>
</ul>
</div>
<!-- <form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="text" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form> -->
</div>
</nav>
<!-- TOP NAVBAR END -->
<!-- PRICING SECTION START-->
<section>
<div class='pricing pricing-palden' style="margin-bottom:0px">
<div class='pricing-item'>
<div class='pricing-deco'>
<svg class='pricing-deco-img' enable-background='new 0 0 300 100' height='100px' id='Layer_1' preserveAspectRatio='none' version='1.1' viewBox='0 0 300 100' width='300px' x='0px' xml:space='preserve' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' y='0px'>
<path class='deco-layer deco-layer--1' d='M30.913,43.944c0,0,42.911-34.464,87.51-14.191c77.31,35.14,113.304-1.952,146.638-4.729
 c48.654-4.056,69.94,16.218,69.94,16.218v54.396H30.913V43.944z' fill='#FFFFFF' opacity='0.6'></path>
<path class='deco-layer deco-layer--2' d='M-35.667,44.628c0,0,42.91-34.463,87.51-14.191c77.31,35.141,113.304-1.952,146.639-4.729
 c48.653-4.055,69.939,16.218,69.939,16.218v54.396H-35.667V44.628z' fill='#FFFFFF' opacity='0.6'></path>
<path class='deco-layer deco-layer--3' d='M43.415,98.342c0,0,48.283-68.927,109.133-68.927c65.886,0,97.983,67.914,97.983,67.914v3.716
 H42.401L43.415,98.342z' fill='#FFFFFF' opacity='0.7'></path>
<path class='deco-layer deco-layer--4' d='M-34.667,62.998c0,0,56-45.667,120.316-27.839C167.484,57.842,197,41.332,232.286,30.428
 c53.07-16.399,104.047,36.903,104.047,36.903l1.333,36.667l-372-2.954L-34.667,62.998z' fill='#FFFFFF'></path>
</svg>
<div class='pricing-price'><span class='pricing-currency'>PKR</span>1500
<span class='pricing-period'>/ mo</span>
</div>
<h3 class='pricing-title'>Basic</h3>
</div>
<ul class='pricing-feature-list'>
<li class='pricing-feature'>1 GB of space</li>
<li class='pricing-feature'>Support at PKR 800/hour</li>
<li class='pricing-feature'>20 Predictions</li>
</ul>
<form action="payment/checkout.php" method="post">
<input type="hidden" name="itemName" value="Standard Package- Monthly">
<input type="hidden" name="itemNumber" value="STD-001">
<input type="hidden" name="itemPrice" value="1500">
<button class='pricing-action' type="submit">Choose plan</button>
</form>
</div>
<div class='pricing-item pricing__item--featured'>
<div class='pricing-deco'>
<svg class='pricing-deco-img' enable-background='new 0 0 300 100' height='100px' id='Layer_1' preserveAspectRatio='none' version='1.1' viewBox='0 0 300 100' width='300px' x='0px' xml:space='preserve' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' y='0px'>
<path class='deco-layer deco-layer--1' d='M30.913,43.944c0,0,42.911-34.464,87.51-14.191c77.31,35.14,113.304-1.952,146.638-4.729
 c48.654-4.056,69.94,16.218,69.94,16.218v54.396H30.913V43.944z' fill='#FFFFFF' opacity='0.6'></path>
<path class='deco-layer deco-layer--2' d='M-35.667,44.628c0,0,42.91-34.463,87.51-14.191c77.31,35.141,113.304-1.952,146.639-4.729
 c48.653-4.055,69.939,16.218,69.939,16.218v54.396H-35.667V44.628z' fill='#FFFFFF' opacity='0.6'></path>
<path class='deco-layer deco-layer--3' d='M43.415,98.342c0,0,48.283-68.927,109.133-68.927c65.886,0,97.983,67.914,97.983,67.914v3.716
 H42.401L43.415,98.342z' fill='#FFFFFF' opacity='0.7'></path>
<path class='deco-layer deco-layer--4' d='M-34.667,62.998c0,0,56-45.667,120.316-27.839C167.484,57.842,197,41.332,232.286,30.428
 c53.07-16.399,104.047,36.903,104.047,36.903l1.333,36.667l-372-2.954L-34.667,62.998z' fill='#FFFFFF'></path>
</svg>
<div class='pricing-price'><span class='pricing-currency'>PKR</span>3000
<span class='pricing-period'>/ mo</span>
</div>
<h3 class='pricing-title'>Professionals</h3>
</div>
<ul class='pricing-feature-list'>
<li class='pricing-feature'>5 GB of space</li>
<li class='pricing-feature'>Support at PKR 500/hour</li>
<li class='pricing-feature'>50 Diagnosis</li>
</ul>
<form action="payment/checkout.php" method="post">
<input type="hidden" name="itemName" value="Professional Package - Monthly">
<input type="hidden" name="itemNumber" value="PRO-001">
<input type="hidden" name="itemPrice" value="3000">
<button class='pricing-action' type="submit">Choose plan</button>
</form>
</div>
<div class='pricing-item'>
<div class='pricing-deco'>
<svg class='pricing-deco-img' enable-background='new 0 0 300 100' height='100px' id='Layer_1' preserveAspectRatio='none' version='1.1' viewBox='0 0 300 100' width='300px' x='0px' xml:space='preserve' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns='http://www.w3.org/2000/svg' y='0px'>
<path class='deco-layer deco-layer--1' d='M30.913,43.944c0,0,42.911-34.464,87.51-14.191c77.31,35.14,113.304-1.952,146.638-4.729
 c48.654-4.056,69.94,16.218,69.94,16.218v54.396H30.913V43.944z' fill='#FFFFFF' opacity='0.6'></path>
<path class='deco-layer deco-layer--2' d='M-35.667,44.628c0,0,42.91-34.463,87.51-14.191c77.31,35.141,113.304-1.952,146.639-4.729
 c48.653-4.055,69.939,16.218,69.939,16.218v54.396H-35.667V44.628z' fill='#FFFFFF' opacity='0.6'></path>
<path class='deco-layer deco-layer--3' d='M43.415,98.342c0,0,48.283-68.927,109.133-68.927c65.886,0,97.983,67.914,97.983,67.914v3.716
 H42.401L43.415,98.342z' fill='#FFFFFF' opacity='0.7'></path>
<path class='deco-layer deco-layer--4' d='M-34.667,62.998c0,0,56-45.667,120.316-27.839C167.484,57.842,197,41.332,232.286,30.428
 c53.07-16.399,104.047,36.903,104.047,36.903l1.333,36.667l-372-2.954L-34.667,62.998z' fill='#FFFFFF'></path>
</svg>
<div class='pricing-price'><span class='pricing-currency'>PKR</span>10000
<span class='pricing-period'>/ yr</span>
</div>
<h3 class='pricing-title'>Enterprise</h3>
</div>
<ul class='pricing-feature-list'>
<li class='pricing-feature'>20 GB of space</li>
<li class='pricing-feature'>Support at PKR 500/hour</li>
<li class='pricing-feature'>Unlimited Diagnosis</li>
</ul>
<form action="payment/checkout.php" method="post">
<input type="hidden" name="itemName" value="Professional Package - Yearly">
<input type="hidden" name="itemNumber" value="ERP-001">
<input type="hidden" name="itemPrice" value="10000">
<button class='pricing-action' type="submit">Choose plan</button>
</div>
</div>
</section>
</div>
<!-- PRICING SECTION END -->
<div style="text-align: center" class="footer" padding-top:0px;>
Copyright © 2019 — DiagnoX.ai
</div>
</body>
</html>