-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms.html
86 lines (86 loc) · 3.77 KB
/
terms.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms & Conditions</title>
<meta
name="description"
content="This page contains the terms and conditions for using our website and services."
/>
<link rel="icon" type="image/x-icon" href="/images/icon.webp" />
<link href="fonts/googleSans.css" rel="preconnect stylesheet" />
<link href="fonts/sourceSansPro.css" rel="preconnect stylesheet" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<style>
.subheading {
margin: 10px;
font-size: 24px;
font-weight: bold;
}
.txt {
font-size: 16px;
}
</style>
</head>
<body data-bs-theme="dark">
<div class="main">
<h1 class="title">Terms & Conditions</h1>
<p class="small-txt">
<strong>Effective date: October 8, 2023</strong> An individual based in
Australia operates the passmgrgui service (the "Service"). This page
informs you of the terms and conditions for using our Service. By using
the Service, you agree to comply with these terms and conditions.
</p>
<!-- Add your terms and conditions content here -->
<h2 class="subheading">PERMISSION</h2>
<p class="txt">
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
“Software”), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions: The above copyright notice and this permission
notice shall be included in all copies or substantial portions of the
Software. <br />
<p class="subheading">WARRANTY</p>
<p class="txt">
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. <br />
<br />
When using our service, you must not expose API keys & other confidential information defined as information not
intended to be visible to the public due to safety, privacy, security
&/or other concerns.
<br />
</p>
</p>
<h3 class="subheading">Updates to these terms and conditions</h3>
<p style="margin-bottom: 10px;" class="txt">
We reserve the right to make changes to these terms and conditions at
any time. Users will receive notice of any changes on this page, and the
effective date will be updated accordingly.
</p>
<p class="txt">
<a href="privacy">View our Privacy Policy</a>
</p>
</div>
<script src="main.js" async defer></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
</body>
</html>