forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
terms-of-use.html
71 lines (60 loc) · 3.23 KB
/
terms-of-use.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WildGuard - Terms of Use</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<style>
/* Modify Bootstrap components with the base color and its shades */
body {
background-color: #f5f5f5; /* Light background */
}
.h2, h3, p {
color: #333; /* Darker text for better readability */
}
.h2 {
border-bottom: 1px solid #2ecc71;
padding-bottom: 10px;
margin-bottom: 20px;
}
.h3 {
margin-bottom: 10px;
}
.text-justify {
text-align: justify;
line-height: 1.5;
} /* Adjust line height for better readability */
/* Optional: Style other Bootstrap components as needed */
.container {
border: 1px solid #ddd; /* Subtle border */
padding: 10px;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="container mt-5">
<div class="row">
<div class="col-md-12">
<!-- Back Button -->
<a href="javascript:history.back()" class="btn btn-outline-success mb-4">← Back</a>
<h2 class="h2 text-center mb-4">Terms of Use</h2>
<h3 class="h3">Disclaimers</h3>
<p class="text-justify">
The WildGuard platform is provided on an "as is" and "as available" basis, without any warranties of any kind, either express or implied, including but not limited to implied warranties of merchantability, fitness for a particular purpose, or non-infringement. We do not guarantee that the platform will be uninterrupted, secure, or free from errors or inaccuracies. The content provided on WildGuard is for general informational purposes only and does not constitute legal, professional, or other advice. You should consult a qualified professional for guidance specific to your situation before acting based on the content available on the platform.
</p>
<h3 class="h3">Limitation of Liability</h3>
<p class="text-justify">
In no event shall WildGuard, its affiliates, officers, directors, employees, agents, or licensors be liable for any damages resulting from your use of the platform, including but not limited to direct, indirect, incidental, consequential, or special damages, such as loss of profits, data, or goodwill, even if we have been informed of the possibility of such damages. This limitation of liability applies to all actions and claims related to the use or performance of the platform.
</p>
<h3 class="h3">Indemnification</h3>
<p class="text-justify">
You agree to indemnify, defend, and hold harmless WildGuard, its affiliates, officers, directors, employees, agents, and licensors from and against all claims, liabilities, damages, losses, expenses, and costs, including reasonable legal fees, arising out of your use of the platform, your violation of these Terms, or your infringement of any third-party rights.
</p>
</div>
</div>
</div>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
</body>
</html>