-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.php
More file actions
156 lines (132 loc) · 4.69 KB
/
pricing.php
File metadata and controls
156 lines (132 loc) · 4.69 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
<?php include ('header.php');?>
<?php include ('imagechange.php');?>
<!-- Custom Fonts -->
<link href='http://fonts.googleapis.com/css?family=PT+Sans:400,700' type="text/css" rel='stylesheet' property='stylesheet'>
<link href='http://fonts.googleapis.com/css?family=Oswald' type="text/css" rel='stylesheet' property='stylesheet'>
<link rel="stylesheet" href="master.css" media="screen" type="text/css" property='stylesheet'>
<script type="text/javascript" src="css-browser-select.js"></script>
<h1><i>Simple clear pricing - no surprises!</i></h1>
<div id="pageContainer">
<div id="tableContainer">
<div class="tableCell">
<div class="tableHeading">
<h2>Basic</h2>
<div class="price1 priceContainer">
<p>€45<sup>.00</sup></p>
<span>per month</span>
</div> <!-- end price1 -->
</div> <!-- end tableHeading -->
</div>
<div class="tableCell">
<div class="tableHeading">
<h2>Corporate</h2>
<div class="price2 priceContainer">
<p>€65<sup>.00</sup></p>
<span>per month</span>
</div> <!-- end price1 -->
</div> <!-- end tableHeading -->
</div>
<div class="tableCell recommended">
<div class="tableHeading">
<h2>Business</h2>
<div class="price3 priceContainer">
<p>€85<sup>.00</sup></p>
<span>per month</span>
</div> <!-- end price1 -->
</div> <!-- end tableHeading -->
</div>
<div class="tableCell noBorder">
<div class="tableHeading">
<h2>Platinum</h2>
<div class="price4 priceContainer">
<p>€110<sup>.00</sup></p>
<span>per month</span>
</div> <!-- end price1 -->
</div> <!-- end tableHeading -->
</div>
<div class="cl"><!-- --></div>
<table class="pricingTableContent">
<tr class="signUpRow">
<td><a href="register.php" class="signUpButton">Sign Up</a></td>
<td><a href="register.php" class="signUpButton">Sign Up</a></td>
<td class="recommended"><a href="register.php" class="signUpButton">Sign Up</a></td>
<td class="noBorder"><a href="register.php" class="signUpButton">Sign Up</a></td>
</tr>
<!-- Table Content -->
<tr>
<td><strong>500</strong> Prescriptions per week</td>
<td><strong>1000</strong> Prescriptions per week</td>
<td class="recommended"><strong>2000</strong> Prescriptions per week</td>
<td class="noBorder"><strong>2500</strong> Prescriptions per week</td>
</tr>
<tr class="altRow">
<td><strong>1000</strong>Prescription Search Requests</td>
<td><strong>1500</strong>Prescription Search Requests</td>
<td class="recommended"><strong>4000</strong> Prescription Search Requests</td>
<td class="noBorder"><strong>Unlimited</strong> Prescription Search Requests</td>
</tr>
<tr>
<td><strong>0%</strong> Transaction Fees</td>
<td><strong>0%</strong> Transaction Fees</td>
<td class="recommended"><strong>0%</strong> Transaction Fees</td>
<td class="noBorder"><strong>0%</strong> Transaction Fees</td>
</tr>
<tr class="altRow">
<td><strong>5</strong> Login Accounts</td>
<td><strong>10</strong> Login Accounts</td>
<td class="recommended"><strong>15</strong> Login Accounts</td>
<td class="noBorder"><strong>Unlimited</strong> Login Accounts</td>
</tr>
<tr>
<td>Webmail Support</td>
<td>Webmail Support</td>
<td class="recommended">Webmail Support</td>
<td class="noBorder">Webmail Support</td>
</tr>
<tr class="altRow">
<td></td>
<td>Phone Support</td>
<td class="recommended">Phone Support</td>
<td class="noBorder">Phone Support</td>
</tr>
<tr>
<td> </td>
<td></td>
<td class="recommended">Call Out Support</td>
<td class="noBorder">Call Out Support</td>
</tr>
<tr class="altRow">
<td> </td>
<td> </td>
<td class="recommended"></td>
<td class="noBorder">24/7 Support</td>
</tr>
<!-- Table Footer -->
<tfoot>
<tr>
<td>
<h4>€45<sup>.00</sup></h4>
<span>per month</span>
<a href="register.php" class="signUpButton">Sign Up</a>
</td>
<td>
<h4>€65<sup>.00</sup></h4>
<span>per month</span>
<a href="register.php" class="signUpButton">Sign Up</a>
</td>
<td class="recommended">
<h4>€85<sup>.00</sup></h4>
<span>per month</span>
<a href="register.php" class="signUpButton">Sign Up</a>
</td>
<td class="noBorder">
<h4>€110<sup>.00</sup></h4>
<span>per month</span>
<a href="register.php" class="signUpButton">Sign Up</a>
</td>
</tr>
</tfoot>
</table>
</div> <!-- end tableContainer -->
</div> <!-- end pageContainer -->
<?php include ('footer.php');?>