-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpurchase.html
386 lines (365 loc) · 12.4 KB
/
purchase.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
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
<!DOCTYPE html>
<html>
<head>
<title>Vysor</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href='font-awesome/css/font-awesome.min.css' rel='stylesheet' type='text/css'>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet">
<script src='common/jquery-2.1.1.min.js'></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<script src='common/buy.js'></script>
<script src='util.js'></script>
<script src='modal.js'></script>
<script src='purchase.js'></script>
<script src='uglify-purchase.js'></script>
<style>
.blue-icon {
color: #4A98E5;
}
.green-icon {
color: #34C109;
}
.table-column-striped tbody tr:nth-child(2n + 1) {
background-color: transparent;
}
.table-column-striped tbody td:nth-child(3) {
background-color: rgba(144, 144, 144, 0.075);
}
.table-column-striped tbody th:nth-child(3) {
background-color: rgba(144, 144, 144, 0.075);
}
.table-column-striped tbody td:nth-child(4) {
background-color: rgba(144, 144, 144, 0.075);
}
.table-column-striped tbody th:nth-child(4) {
background-color: rgba(144, 144, 144, 0.075);
}
.table-column-striped tbody td:nth-child(2),
.table-column-striped tbody td:nth-child(3),
.table-column-striped tbody td:nth-child(4),
.table-column-striped thead tr th:nth-child(2),
.table-column-striped thead tr th:nth-child(3),
.table-column-striped thead tr th:nth-child(4) {
text-align: center;
}
body {
padding: 16px;
}
.time-highlight {
color: red;
}
td {
font-size: 14px;
}
html, body {
overflow-y: visible;
}
.cursor-pointer {
cursor: pointer;
}
.grow { transition: all .1s ease-in-out; }
.grow:hover { transform: scale(1.1); }
.plans-outer {
width: 100%;
margin: 0px auto;
}
.plans-inner {
float: left;
width: 25%;
}
.plan-upgrade, .plan {
text-align: center;
margin-left: 10px;
margin-right: 10px;
border-radius: 6px;
color: white;
}
.plan {
padding-top: 10px;
min-height: 200px;
}
.plan-upgrade {
min-height: 30px;
padding-top: 4px;
}
.plan-price {
position: relative;
display: block;
height: 6rem;
font-size: 5.5rem;
line-height: 6.5rem;
font-weight: 450;
margin-bottom: .5rem;
}
.plan-price .currency {
position: relative;
top: -1.75rem;
font-weight: 400;
font-size: 3rem;
letter-spacing: 0;
}
.plan-header {
margin-bottom: .625rem;
font-weight: 900;
text-shadow: none;
color: #fff;
position: relative;
z-index: 2;
}
.plan-price-details {
display: block;
margin-bottom: 1.4rem;
font-size: 1.3rem;
line-height: 1.3rem;
opacity: .8;
-moz-opacity: .8;
-khtml-opacity: .8;
text-shadow: none;
}
.plan-monthly {
background-color: rgba(138,116,185,.95);
}
.plan-annual {
background-color: rgba(76,185,146,.95);
}
.plan-lifetime {
background-color: rgba(52,153,224,.95);
}
.plan-enterprise {
background-color: #e99b4f;
}
.payment-img {
width: 228px;
min-width: 228px
max-width: 228px;
margin: 10px;
}
</style>
</head>
<body>
<div class="modal fade" id="notificationModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id='modal-title'></h4>
</div>
<div class="modal-body">
<p id='modal-body'></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal" id='modal-cancel'></button>
<button type="button" class="btn btn-primary" id='modal-ok'></button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<div class="modal fade" id="paymentModal" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title">Checkout</h4>
</div>
<div class="modal-body">
<div>License Account: <span id='purchase-email'></span>.<br/><a href="https://plus.google.com/110558071969009568835/posts/5dWULG7ALmB" target="_blank">Wrong account? Read this.</a><br/><br/></div>
<center>
<p><b>Preferred Checkout</b></p>
<div>
<a id='pay-card' href='#'><img src='payment/card.png' class='payment-img' /></a>
</div>
<div>
<a id='pay-alipay' href='#'><img src='payment/alipay.png' class='payment-img' /></a>
</div>
<br/>
<p><b>Alternate Checkout</b></p>
<div>
<a id='pay-google' href='#'><img src='payment/google.png' class='payment-img' /></a>
</div>
<div>
<a id='pay-paypal' href='#'><img src='payment/paypal.png' class='payment-img' /></a>
</div>
</center>
<br/>
<br/>
<p>Preferred Checkout is powered by <a href='https://www.stripe.com' target='_blank'>Stripe</a>: secure payments, easy to manage subscription, and hassle free. Any order issues can be quickly resolved. This option is highly recommended.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
</div>
</div><!-- /.modal-content -->
</div><!-- /.modal-dialog -->
</div><!-- /.modal -->
<header class="major">
<center>
<h2>Upgrade Vysor</h2>
<h4 id='used'></h4>
</center>
</header>
<section id="plans" class="wrapper">
<div class="plans-outer">
<div class='plans-inner'>
<div class='plan plan-monthly grow cursor-pointer'>
<h3 class='plan-header'>Monthly</h3>
<span class='plan-price'>
<span class='currency'>$</span>2
</span>
</div>
</div>
<div class='plans-inner'>
<div class='plan plan-annual grow cursor-pointer'>
<h3 class='plan-header'>Annual</h3>
<span class='plan-price'>
<span class='currency'>$</span>10
<!-- <span class="plan-price-details">7 day free trial<br>with credit card<br/>purchase</span> -->
</span>
</div>
</div>
<div class='plans-inner'>
<div class='plan plan-lifetime grow cursor-pointer'>
<h3 class='plan-header'>Lifetime</h3>
<span class='plan-price'>
<span class='currency'>$</span>40
</span>
</div>
</div>
<div class='plans-inner'>
<div class='plan plan-enterprise grow cursor-pointer'>
<h3 class='plan-header'>Enterprise</h3>
<span class='plan-price'>
<span class='currency'>$</span>2
</span>
<span class="plan-price-details">per active user, per month<br>billed monthly</span>
</div>
</div>
</div>
<div class="plans-outer">
<div class='plans-inner'>
<div class='plan-upgrade plan-monthly cursor-pointer'>Upgrade Now</div>
</div>
<div class='plans-inner'>
<div class='plan-upgrade plan-annual cursor-pointer'>Upgrade Now</div>
</div>
<div class='plans-inner'>
<div class='plan-upgrade plan-lifetime cursor-pointer'>Upgrade Now</div>
</div>
<div class='plans-inner'>
<div class='plan-upgrade plan-enterprise cursor-pointer'>Upgrade Now</div>
</div>
</div>
</section>
<section id="pricing" class="wrapper">
<div class="inner">
<section>
<div class="table-wrapper">
<table class="table table-column-striped">
<thead>
<tr>
<th></th>
<th width='20%'>Vysor Free</th>
<th width='20%'>Vysor Pro</th>
<th width='20%'>Vysor Enterprise</th>
</tr>
</thead>
<tbody>
<tr>
<td>Mirror and Control Android</td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Screenshots</td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>High Quality Mirroring</td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Fullscreen Mode</td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Go Wireless</td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Vysor Share</td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Drag and Drop Files</td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Access to <b>all</b> future features</td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Vysor Share access management via web</td>
<td></td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
<tr>
<td>Flexible organizational licensing</td>
<td></td>
<td></td>
<td><span class="blue-icon fa fa-check"></span></td>
</tr>
</tbody>
<!-- <tfoot>
<tr>
<td colspan="3" style='text-align: right;'>$1.99/mo or $9.99/yr</td>
</tr>
</tfoot> -->
</table>
</div>
</section>
</div>
</section>
<section class='wrapper' style='display: none;'>
<div class='inner'>
<section id='purchase-options'>
<div class='table-wrapper'>
<table class="table table-column-striped">
<thead>
<tr>
<th>Vysor Pro Purchase Options</th>
<th width='30%'>Price</th>
<th width='30%'>Payment Method</th>
</tr>
</thead>
<tbody id='prices'>
</tbody>
</table>
</div>
</section>
<br/>
<div id='purchase-options-loading'>
<center><h4>One moment...</h4><center>
</div>
</div>
</section>
<div style='float: right;'>
<div>Already purchased?</div>
<a id='retrieve' class='btn btn-primary'>Retrieve License</a>
</div>
</body>
</html>