-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtos.html
341 lines (308 loc) · 15.6 KB
/
tos.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Exp Host | Legal</title>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<style>
:root {
--primary-color: #6C63FF;
--secondary-color: #ce42f5;
--background-color: #0F0F1A;
--text-color: #FFFFFF;
--accent-color: #FF6B6B;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Custom scrollbar styles */
::-webkit-scrollbar {
width: 12px; /* Width of the scrollbar */
background-color: #1c1c1c; /* Background color of the scrollbar track */
}
::-webkit-scrollbar-thumb {
background-color: var(--primary-color); /* Color of the scrollbar thumb */
border-radius: 10px; /* Rounded corners for the scrollbar thumb */
border: 2px solid #1c1c1c; /* Border around the scrollbar thumb */
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--secondary-color); /* Color of the scrollbar thumb on hover */
}
body {
scrollbar-color: #00bfff #0F0F1A;
scrollbar-width: thin;
background-color: #0F0F1A;
color: #f0f0f0;
font-family: 'Ubuntu', sans-serif;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
padding: 0;
}
header {
background-color: rgba(15, 15, 26, 0.8);
font-family: 'Poppins', sans-serif;
backdrop-filter: blur(10px);
position: fixed;
width: 100%;
z-index: 1000;
transition: all 0.3s ease;
padding: 10px 0; /* Adjusted for better alignment */
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
display: flex;
align-items: center; /* Aligns the logo and text vertically */
gap: 10px; /* Adds space between the logo and text */
}
.logo img {
width: 50px; /* Set the desired width */
height: auto; /* Maintain aspect ratio */
}
.logo span {
font-size: 1.5rem;
font-weight: 700;
color: var(--primary-color);
}
.nav-links {
display: flex;
list-style: none;
}
.nav-links li {
margin-left: 30px;
}
.nav-links a {
color: var(--text-color);
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: var(--primary-color);
}
.content {
width: 100%;
max-width: 1200px;
padding: 80px 20px 20px;
display: flex;
flex-direction: column;
align-items: center;
}
.title-box {
width: 80%;
padding: 20px;
margin-bottom: 20px;
background: url('/images/image.png') no-repeat center center;
background-size: cover;
border-radius: 15px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.title-box h1 {
font-size: 2.5em;
color: #ffffff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.text {
width: 80%;
margin-bottom: 20px;
font-size: 1.2em;
text-align: center;
}
.sub-text {
width: 80%;
font-size: 1em;
text-align: center;
color: #cccccc;
}
.section-title {
width: 80%;
font-size: 2em;
margin: 20px 0 10px;
text-align: center;
}
.section-subtitle {
width: 80%;
font-size: 1.5em;
margin: 10px 0;
text-align: center;
color: #aaaaaa;
}
.section-text {
width: 80%;
font-size: 1em;
text-align: justify;
color: #dddddd;
margin: 10px 0;
}
footer {
padding-top: 50px;
background-color: rgba(15, 15, 26, 0.8);
text-align: center;
}
footer p {
margin: 10px 0;
}
footer .social-icons {
margin-top: 60px;
}
footer .social-icons a {
color: var(--text-color);
text-decoration: none;
font-size: 1.5rem;
margin: 0 10px;
transition: color 0.3s ease;
}
footer .social-icons a:hover {
color: var(--primary-color);
}
.social-links {
margin-bottom: 20px;
}
.social-links a {
color: var(--text-color);
font-size: 1.5rem;
margin: 0 10px;
transition: color 0.3s ease;
}
.social-links a:hover {
color: var(--primary-color);
}
</style>
</head>
<body>
<header>
<div class="container">
<nav>
<div class="logo">
<img src="/images/logo.png" alt="Exp Host Logo" style="width: 50px; height: auto;">
<span>Exp Host</span>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="#features">Pricing</a></li>
<li><a href="https://billing.exphost.net">Billing</a></li>
<li><a href="legal.html">Legal</a></li>
<li><a href="https://panel.exphost.net">Panel</a></li>
</ul>
</nav>
</div>
</header>
<div class="content">
<div class="title-box">
<h1>Terms of Service (TOS)</h1>
</div>
<div class="section-text">
<h3>1. Acceptance of Terms</h3>
<p>By using ExpHost ("we", "us", "our") services, you ("customer", "user", "you") agree to be bound by these Terms of Service ("TOS"). If you do not agree to these TOS, you must not use our services. Continued use of our services implies acceptance of any updates or modifications to these TOS.</p>
</div>
<div class="section-text">
<h3>2. Account Responsibilities</h3>
<p>
<strong>Account Security:</strong> You are solely responsible for maintaining the confidentiality of your account credentials, including your password. You agree to notify us immediately of any unauthorized use of your account or any other breach of security. ExpHost is not liable for any loss or damage arising from your failure to protect your account information.<br>
<strong>Account Information:</strong> You agree to provide accurate, current, and complete information during the registration process and to update such information to keep it accurate, current, and complete.<br>
<strong>Content Responsibility:</strong> You are responsible for all content stored or transmitted on your server, including ensuring that it does not violate any applicable laws or regulations. ExpHost is not responsible for any data loss, corruption, or unauthorized access to your data. It is your responsibility to maintain appropriate backups of your content.
</p>
</div>
<div class="section-text">
<h3>3. Prohibited Activities</h3>
<p>
<strong>Illegal Use:</strong> You may not use our services for any illegal activities, including but not limited to hosting, promoting, or distributing child pornography, conducting illegal gambling, or engaging in any activity that violates local, state, national, or international law.<br>
<strong>Resource Abuse:</strong> Excessive use of server resources that negatively impacts the performance, reliability, or availability of our services to other customers is prohibited. We reserve the right to suspend or terminate services if we determine that your usage exceeds acceptable levels.<br>
<strong>Intellectual Property Infringement:</strong> You may not host or transmit any content that infringes upon the intellectual property rights of others, including copyrighted material, trademarks, patents, or trade secrets.<br>
<strong>Harassment and Harm:</strong> Any form of harassment, abuse, or harm to other users, our employees, or third parties is strictly prohibited. This includes, but is not limited to, cyberstalking, transmitting threats, or engaging in activities designed to harass or harm.
</p>
</div>
<div class="section-text">
<h3>4. Payment and Refunds</h3>
<p>
<strong>Billing:</strong> Services are billed on a monthly basis unless otherwise agreed upon. Payment must be made in advance of the service period. We accept payments via major credit cards, PayPal, and other payment methods as indicated during the checkout process.<br>
<strong>Refund Policy:</strong> Refunds are provided at our discretion and are subject to the following conditions:
<ul>
<li>A full refund may be issued if a request is made within 48 hours of the initial order. Refund requests must be submitted through the client portal or via email to our billing department.</li>
<li>Orders exceeding $50 are non-refundable. This policy is non-negotiable.</li>
<li>No refunds will be issued after the 48-hour window, except in cases where ExpHost fails to meet its service level agreement (SLA).</li>
</ul>
</p>
</div>
<div class="section-text">
<h3>5. Cancellation Policy</h3>
<p>
<strong>Cancellation Process:</strong> To cancel your service, you must submit a request through the client billing panel. Upon cancellation, you will retain access to your service until the end of the current billing period, after which your service will be terminated.<br>
<strong>Data Retention Post-Cancellation:</strong> Upon cancellation, your data will be retained for a maximum of 7 days, after which it will be permanently deleted from our systems. It is your responsibility to retrieve any data prior to cancellation.
</p>
</div>
<div class="section-text">
<h3>6. Off-Site Backups</h3>
<p>
<strong>Backup Schedule:</strong> We perform off-site backups every 12 hours for all nodes. These backups are intended for internal use to restore system functionality in the event of a catastrophic failure.<br>
<strong>Data Loss Disclaimer:</strong> While we provide off-site backups, we are not responsible for any data loss, and we strongly recommend that users maintain their own backups. We do not guarantee the availability or integrity of backups beyond our own operational needs.<br>
<strong>Backup Restoration:</strong> If you require a backup restoration, please contact our support team. A fee may apply for this service, depending on the nature of the request.
</p>
</div>
<div class="section-text">
<h3>7. Service Availability</h3>
<p>
<strong>Uptime Guarantee:</strong> We guarantee a 99% uptime as outlined in our Service Level Agreement (SLA). In the event of downtime beyond this threshold, you may be eligible for service credits as specified in the SLA.<br>
<strong>Scheduled Maintenance:</strong> We will notify you of any scheduled maintenance that may impact service availability at least 24 hours in advance. Emergency maintenance may be performed without prior notice but will be communicated as soon as possible.<br>
<strong>Service Interruptions:</strong> ExpHost is not liable for any service interruptions caused by factors outside our control, including but not limited to natural disasters, acts of war, or failures in third-party services.
</p>
</div>
<div class="section-text">
<h3>8. Modifications to the TOS</h3>
<p>We reserve the right to modify these TOS at any time. Any changes will be communicated to you at least 30 days in advance via email or through a notice on our website. Continued use of our services after the effective date of any changes constitutes your acceptance of the modified TOS.</p>
</div>
<div class="section-text">
<h3>9. Governing Law</h3>
<p>These TOS are governed by and construed in accordance with the laws of the jurisdiction in which ExpHost operates, without regard to its conflict of law principles. You agree to submit to the exclusive jurisdiction of the courts located within this jurisdiction.</p>
</div>
<div class="section-text">
<h3>10. Severability</h3>
<p>If any provision of these TOS is found to be invalid or unenforceable by a court of competent jurisdiction, the remaining provisions will remain in full force and effect.</p>
</div>
<div class="section-text">
<h3>11. Entire Agreement</h3>
<p>These TOS, along with our Privacy Policy and Service Level Agreement (SLA), constitute the entire agreement between you and ExpHost and supersede any prior agreements or understandings, whether written or oral.</p>
</div>
<div class="section-text">
<h3>12. Contact Information</h3>
<p>For any questions regarding these TOS, please contact us at [email protected].</p>
</div>
<footer>
<div class="u-container-layout u-valign-top-lg u-valign-top-md u-valign-top-sm u-container-layout-2">
<a href="https://www.astrofoxstudios.com" class="u-image u-logo u-image-1" data-image-width="2047" data-image-height="629" title="Home">
<img src="https://www.astrofoxstudios.com/images/image.png" class="u-logo-image u-logo-image-1" style="width: auto; height: 100px;">
</a>
</div>
<div class="container">
<div class="social-links">
<a href="https://www.youtube.com/channel/UCamVCCPTcTfXqHCOJp5i0Fw"><i class="fab fa-youtube"></i></a>
<a href="https://twitter.com/AstroFoxStudios"><i class="fab fa-twitter"></i></a>
<a href="https://discord.gg/bxcfsjyVYZ"><i class="fab fa-discord"></i></a>
</div>
<p>© 2024 Exp Host. All rights reserved.</p>
</div>
</footer>
</body>
</html>