-
Notifications
You must be signed in to change notification settings - Fork 1
/
subscriptions.php
81 lines (73 loc) · 2.81 KB
/
subscriptions.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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" type="image/x-icon" href="/media/favicon.ico">
<div id = "head">
<?php
include 'header.php';
?>
</div>
</head>
<body>
<div class="pricing-header px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<br>
<br>
<p class="lead">Here is a recap of all our offers! </p>
</div>
<div class="container">
<div class="card-deck mb-3 text-center">
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Bronze</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">Free!</h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Start for free</li>
<li>Access to some information</li>
<li>News Letter</li>
<li>Feed Back from us</li>
</ul>
<button type="button" class="btn btn-lg btn-block btn-outline-primary">Sign up for free</button>
<img src="media/bronze.jpg" class="d-block w-100" alt="..." width="100" height="200">
</div>
</div>
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Gold</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$5 <small class="text-muted">/ month</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Unlimited acces to all statistics</li>
<li>Weither player, team or matches!</li>
<li>Whenever you want/need</li>
<br>
</ul>
<button type="button" class="btn btn-lg btn-block btn-primary">Get started</button>
<img src="media/gold.jpg" class="d-block w-100" alt="..." width="150" height="200">
</div>
</div>
<div class="card mb-4 box-shadow">
<div class="card-header">
<h4 class="my-0 font-weight-normal">Premium Plus Platinium</h4>
</div>
<div class="card-body">
<h1 class="card-title pricing-card-title">$10 <small class="text-muted">/ month</small></h1>
<ul class="list-unstyled mt-3 mb-4">
<li>Access right now for all the content!</li>
<li>Statistics, predictions, and so much more</li>
<li>Vip access on all the site</li>
<br>
</ul>
<button type="button" class="btn btn-lg btn-block btn-primary">Get started</button>
<img src="media/ppp.jpg" class="d-block w-100" alt="..." width="150" height="200">
</div>
</div>
</div>
<footer class="container">
<?php
include 'footer.php';?>
</footer>
</body>
</html>