forked from dbaclin/oinoi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plans.php
118 lines (104 loc) · 3.27 KB
/
plans.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
<!DOCTYPE html>
<html lang="en">
<?php include_once('./head.php'); ?>
<body>
<?php include_once('./google_tracking.php'); ?>
<?php include_once('./header_menu.php'); ?>
<!-- Content
================================================== -->
<div id="content" class="container">
<div class="hero-unit">
<div class="container">
<h1 class="ac">Plans and pricing.</h1>
<p class="ac">
Pay monthly and switch packages or cancel any time </p>
</div>
</div>
<!-- Example pricing -->
<div class="row pricing">
<div class="span4">
<div class="well">
<h2>Free</h2>
<ul>
<li>✔ Your data are public</li>
<li>✔ Unlimited dashboards</li>
<li>✔ Access to all features</li>
<li>✔ Standard datasources</li>
<li>✔ E-mail support</li>
</ul>
<hr />
<h3 class="ac">Free</h3>
<hr />
<p class="ac">
<a class="btn btn-primary btn-large" href="#">Select plan »</a>
</p>
</div>
</div>
<div class="span4 most-popular">
<div class="well">
<h2>Enterprise</h2>
<p><span>POPULAR</span></p>
<ul>
<li>✔ Your data are private</li>
<li>✔ 1TB of space</li>
<li>✔ Unlimited dashboards</li>
<li>✔ Unlimited users</li>
<li>✔ Access to all features</li>
<li>✔ Premium datasources</li>
<li>✔ Phone and e-mail support</li>
</ul>
<hr />
<h3 class="ac">$199 / month</h3>
<hr />
<p class="ac">
<a class="btn btn-primary btn-large" href="#">Select plan »</a>
</p>
</div>
</div>
<div class="span4">
<div class="well">
<h2>Big Data</h2>
<ul>
<li>✔ Your data are private</li>
<li>✔ Unlimited users</li>
<li>✔ 10TB of space</li>
<li>✔ Unlimited dashboards</li>
<li>✔ Access to all features</li>
<li>✔ Premium datasources</li>
<li>✔ Phone and e-mail support</li>
</ul>
<hr />
<h3 class="ac">$499 / month</h3>
<hr />
<p class="ac">
<a class="btn btn-primary btn-large" href="#">Select plan »</a>
</p>
</div>
</div>
</div>
<hr />
<div class="row">
<div class="span12">
<h1 class="lead">
<b>All plans comes with 90-day</b> money-back guarantee.
</h1>
</div>
</div>
</div>
<?php
include_once("./footer.php");
?>
<?php include_once('./libs.php'); ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>!window.jQuery && document.write(unescape('%3Cscript src="./home/js/jquery-1.8.3.min.js"%3E%3C/script%3E'))</script>
<script type="text/javascript" src="./libs/webtemplate/bootstrap.min.js"></script>
<script type="text/javascript" src="./libs/webtemplate/jquery.isotope.min.js"></script>
<script type="text/javascript" src="./libs/webtemplate/jquery.touchSwipe.js"></script>
<script type="text/javascript" src="./libs/webtemplate/jquery.hotkeys.min.js"></script>
<script type="text/javascript" src="./libs/webtemplate/functions.min.js?v=2"></script>
<script type="text/javascript">
$('#top-bar-menu li').removeClass('active');
$('#top-bar-menu li:contains(Pricing)').addClass('active');
</script>
</body>
</html>