This repository has been archived by the owner on Apr 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vps-storage.php
143 lines (137 loc) · 4.76 KB
/
vps-storage.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
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
<?php
$page = [
'id' => 'vps-storage',
'title' => 'Storage VPS Hosting',
'seo_desc' => 'Storage VPSs located in Seattle, running on HDDs and high-clock CPUs with lots of extra available features.',
'seo_tags' => 'seattle vps, ssd vps, ssd vps hosting, seattle server, openvz',
'cta_title' => 'OpenVZ Storage VPS',
'cta_desc' => ' '
];
require_once('structure/header.php');
?>
<div class="body alt">
<div class="wrapper">
<section id="slider">
<h3>Build OpenVZ VPS Package</h3>
<div id="select">
<div class="top">
<div id="spec-storage" class="spec"><span>---</span> HDD Space</div>
<div id="spec-raid" class="spec"><span>RAID 10</span> RAID</div>
<div id="spec-memory" class="spec"><span>---</span> Memory</div>
<div id="spec-bandwidth" class="spec"><span>---</span> Bandwidth</div>
<div id="spec-connection" class="spec"><span>10Gbit</span> Connection</div>
</div>
<div class="body">
<h4>Drag the slider to choose your plan</h4>
<div class="selection plan5">
<div class="notches">
<div class="notch"><span>100GB</span></div>
<div class="notch"><span>250GB</span></div>
<div class="notch"><span>500GB</span></div>
<div class="notch"><span>1TB</span></div>
<div class="notch"><span>2TB</span></div>
</div>
<div class="slider">
<div class="slider-wrap">
<div id="ui-slider"></div>
<span class="filler"></span>
</div>
</div>
</div>
</div>
</div>
<div id="details">
<div class="details">
<h4>Included Features</h4>
<ul>
<li>Intel E3 CPUs (3.3GHz+ per core)</li>
<li>Hardware RAID 10 HDD</li>
<li>Tier-1 Network</li>
<li>16 IPv6 addresses</li>
</ul>
</div>
<div class="config">
<div class="left">
<div class="options float">
<h4>Package Configuration & Addons</h4>
<div>
<label>Billing Cycle</label>
<select id="vps-cycle">
<option value="0">Bill Monthly</option>
<option value="1">Bill Yearly</option>
</select>
</div>
<div>
<label>Server Location</label>
<select id="vps-loc">
<option value="194">Seattle, WA</option>
</select>
</div>
<div>
<label>Additional IPs</label>
<select id="vps-ips">
<option value="180">✘ No Additional IPs</option>
<option value="176">1 Extra IP (+$1.50/mo)</option>
<option value="177">2 Extra IP's ($3.00/mo)</option>
<option value="178">3 Extra IP's ($4.50/mo)</option>
</select>
</div>
<div>
<label>Server Management</label>
<select id="vps-manage">
<option value="196">✘ Unmanaged</option>
<option value="197">✔ Managed ($50.00/mo)</option>
</select>
</div>
</div>
</div>
<div class="right">
<div class="float">
<div class="price"><span class="dollar">$</span><span class="amount">0</span></div>
<div class="term">Billed <span>Monthly</span></div>
<a href="#" class="bttn purple">Order Now</a>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div class="body">
<div class="wrapper">
<section class="features">
<article>
<i class="icon icn-meter2"></i>
<h3>Premium Hardware</h3>
<p>All of our servers are built in-house with high quality server grade parts, for ultimate performance.</p>
</article>
<article>
<i class="icon icn-cloud-upload"></i>
<h3>Top Tier Network</h3>
<p>Our Juniper-backed dual stack network utilizes multiple redundant 10Gbit uplinks for maximum uptime.</p>
</article>
<article>
<i class="icon icn-hipster"></i>
<h3>Great Support</h3>
<p>Need a hand with your VPS? A staff member is just a click away through our billing center.</p>
</article>
<article>
<i class="icon icn-magic-wand"></i>
<h3>Simple Management</h3>
<p>We include SolusVM with all servers, making it easy to manage your VM with just a few clicks.</p>
</article>
</section>
</div>
</div>
<script type="text/javascript">
var vpsStart = 2;
var vpsType = 'storage';
var vpsProducts = [
[46, 1, '1GB', '100GB', '1TB', '10Gbit', 10.00, 0, 100.00],
[45, 1, '1GB', '250GB', '2TB', '10Gbit', 14.00, 0, 140.00],
[27, 2, '1GB', '500GB', '4TB', '10Gbit', 20.00, 0, 200.00],
[28, 4, '2GB', '1TB', '8TB', '10Gbit', 40.00, 0, 400.00],
[29, 4, '2GB', '2TB', '16TB', '10Gbit', 80.00, 0, 800.00],
];
</script>
<?php require_once('structure/footer.php'); ?>