forked from anuragverma108/WildGuard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request anuragverma108#70 from NehanPathan/feature/add-ter…
…ms-of-use-page Feature/add terms of use page
- Loading branch information
Showing
2 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<!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: 20px; | ||
border-radius: 5px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container mt-5"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<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> |