Skip to content

Commit f5e6115

Browse files
committed
add tos, terms overview
add terms link to the main page
1 parent f35d51a commit f5e6115

File tree

4 files changed

+218
-6
lines changed

4 files changed

+218
-6
lines changed

index.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ <h5 class="warning">
8888
NOT AN OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH
8989
MOJANG.
9090
</h5>
91+
<p>
92+
<a href="https://axolotlclient.com/terms">Terms</a>
93+
</p>
9194
</div>
9295
</body>
9396
</html>

privacy.html

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en" data-theme="dark">
33
<head>
44
<script>
5-
async function privacyLoad() {
5+
async function load() {
66
await new Promise((r) => setTimeout(r, 500));
77
document.getElementById("policy").scrollIntoView();
88
}
@@ -32,7 +32,7 @@
3232
<img src="images/moon.svg" alt="" id="switcher" />
3333
</div>
3434
</div>
35-
<body onload="privacyLoad()">
35+
<body onload="load()">
3636
<div class="main">
3737
<img src="images/icon.png" alt="AxolotlClient icon" />
3838
<h1>Privacy Policy</h1>
@@ -42,7 +42,7 @@ <h3 class="primer">
4242
The data processed by AxolotlClient's social features is governed by
4343
this privacy policy.
4444
</h3>
45-
<em>Last Updated: 2024-12-10</em>
45+
<em>Last Updated: 2024-12-16</em>
4646

4747
<h2>Summary</h2>
4848
<ul>
@@ -181,9 +181,11 @@ <h2>Changes to this Document</h2>
181181
The latest version of this policy will always be available at
182182
<a href="https://axolotlclient.com/privacy">
183183
https://axolotlclient.com/privacy</a
184-
>. We will update the date at the top of this page accordingly. To make
185-
sure you always know how we store and process your data it is advised you
186-
regularly check this page for changes.
184+
>. We will update the date at the top of this page accordingly. While we
185+
will try to notify you of changes ahead of them taking effect, we
186+
recommend to regularly check this page to always know how we store and
187+
process your data since it might not be possible to notify you ahead of
188+
changes since we do not store any direct contact information.
187189
</div>
188190
<div class="about">
189191
<h5 class="warning">

terms.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!doctype html>
2+
<html lang="en" data-theme="dark">
3+
<head>
4+
<script>
5+
async function load() {
6+
await new Promise((r) => setTimeout(r, 500));
7+
document.getElementById("policy").scrollIntoView();
8+
}
9+
</script>
10+
<script defer="" src="script.js"></script>
11+
<link rel="stylesheet" href="style.css" />
12+
<link rel="icon" href="images/icon.png" />
13+
<link
14+
href="https://fonts.bunny.net/css2?family=Fira+Sans&amp;display=swap"
15+
rel="stylesheet"
16+
/>
17+
<meta charset="UTF-8" />
18+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
19+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
20+
<title>Terms - AxolotlClient</title>
21+
</head>
22+
<body onload="load()">
23+
<div class="navbar">
24+
<div class="navbar-left">
25+
<a href="https://axolotlclient.com"
26+
><img src="images/icon.png" alt="Logo"
27+
/></a>
28+
<a class="text" href="https://modrinth.com/mod/axolotlclient"
29+
>Modrinth</a
30+
>
31+
<a class="text" href="https://github.com/AxolotlClient/">GitHub</a>
32+
<a class="text" href="https://discord.gg/WyMjeX3vka">Discord</a>
33+
</div>
34+
<div class="navbar-right">
35+
<img src="images/moon.svg" alt="" id="switcher" />
36+
</div>
37+
</div>
38+
39+
<div class="main">
40+
<img src="images/icon.png" alt="AxolotlClient icon" />
41+
<h1>Terms</h1>
42+
</div>
43+
<div class="policy" id="policy">
44+
<h3 class="primer">
45+
These are the terms currently used by AxolotlClient:
46+
</h3>
47+
48+
<h2>Terms of Service</h2>
49+
Our terms of service are available here:
50+
<a href="https://axolotlclient.com/tos">https://axolotlclient.com/tos</a>
51+
52+
<h2>Privacy policy</h2>
53+
Our privacy policy is available here:
54+
<a href="https://axolotlclient.com/privacy"
55+
>https://axolotlclient.com/privacy</a
56+
>
57+
<div class="spacer" style="min-height: 60vh"></div>
58+
<div class="about">
59+
<h5 class="warning">
60+
NOT AN OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH
61+
MOJANG.
62+
</h5>
63+
</div>
64+
</div>
65+
</body>
66+
</html>

tos.html

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
<!doctype html>
2+
<html lang="en" data-theme="dark">
3+
<head>
4+
<script>
5+
async function load() {
6+
await new Promise((r) => setTimeout(r, 500));
7+
document.getElementById("policy").scrollIntoView();
8+
}
9+
</script>
10+
<script defer src="script.js"></script>
11+
<link rel="stylesheet" href="style.css" />
12+
<link rel="icon" href="images/icon.png" />
13+
<link
14+
href="https://fonts.bunny.net/css2?family=Fira+Sans&display=swap"
15+
rel="stylesheet"
16+
/>
17+
<meta charset="UTF-8" />
18+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
19+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
20+
<title>Terms of Service - AxolotlClient</title>
21+
</head>
22+
<div class="navbar">
23+
<div class="navbar-left">
24+
<a href="https://axolotlclient.com"
25+
><img src="images/icon.png" alt="Logo"
26+
/></a>
27+
<a class="text" href="https://modrinth.com/mod/axolotlclient">Modrinth</a>
28+
<a class="text" href="https://github.com/AxolotlClient/">GitHub</a>
29+
<a class="text" href="https://discord.gg/WyMjeX3vka">Discord</a>
30+
</div>
31+
<div class="navbar-right">
32+
<img src="images/moon.svg" alt="" id="switcher" />
33+
</div>
34+
</div>
35+
<body onload="load()">
36+
<div class="main">
37+
<img src="images/icon.png" alt="AxolotlClient icon" />
38+
<h1>Terms of Service</h1>
39+
</div>
40+
<div class="policy" id="policy">
41+
<h3 class="primer">
42+
This Document describes your relationship with the services provided by
43+
AxolotlClient.
44+
</h3>
45+
<em>Last Updated: 2024-12-16</em>
46+
47+
<p>These terms govern the relation ship between the following parties:</p>
48+
49+
<ul>
50+
<li>
51+
The online services provided together with the social features of
52+
AxolotlClient, hereafter referred to as "the services".
53+
</li>
54+
<li>
55+
You, a user of the services, hereafter referred to as "the user".
56+
</li>
57+
</ul>
58+
59+
<p>
60+
By using the services you agree to have read and understood these terms
61+
and accept our privacy policy.
62+
</p>
63+
64+
<h2>Requirements</h2>
65+
66+
<p>
67+
To make use of the services you must fulfill the following requirements:
68+
</p>
69+
<ol>
70+
<li>
71+
The user must own a valid Minecraft account, obtainable from
72+
https://minecraft.net
73+
</li>
74+
<li>
75+
The user must be at least 13 years of age. The minimum age to use our
76+
Services without parental approval may be higher in your home country.
77+
</li>
78+
<li>
79+
The user must accept these terms and our privacy policy, accessible at
80+
https://axolotlclient.com/privacy.
81+
</li>
82+
<li>The user must not be banned from using the services.</li>
83+
<li>
84+
It is not allowed to use any of the provided features to circumvent
85+
the law. Should we notice any illicit activity we may restrict your
86+
ability to access these features.
87+
</li>
88+
<li>
89+
You own the information you submit through the services. You must own
90+
the rights to distribute any content you share.
91+
</li>
92+
</ol>
93+
94+
<h2>Registration</h2>
95+
96+
<p>
97+
To use the services you have to create an account by logging into the
98+
services with your Minecraft account. Your Minecraft account must be
99+
allowed to use multiplayer features to use the services.
100+
</p>
101+
102+
<h2>Disclaimers</h2>
103+
104+
<p>
105+
AxolotlClient grants you a limited, revocable, non-exclusive and
106+
non-transferable license to use the services in accordance with these
107+
terms. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
108+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
109+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
110+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
111+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
112+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
113+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Our Services may
114+
be interrupted, including for maintenance, upgrades, or network or
115+
equipment failures. We may discontinue some or all of our Services,
116+
including certain features and the support for certain devices and
117+
platforms, at any time. We may link to other services on our website or
118+
in other products. Despite our best efforts we may not always be able to
119+
ensure the safety or accuracy of the contents on third-party websites or
120+
products. We are not responsible for the contents of third-party
121+
websites or products.
122+
</p>
123+
124+
<h2>Changes to this Document</h2>
125+
126+
The latest version of this policy will always be available at
127+
<a href="https://axolotlclient.com/tos">https://axolotlclient.com/tos</a>.
128+
We will update the date at the top of this page accordingly. While we will
129+
try to notify you of changes ahead of them taking effect, we recommend to
130+
regularly check this page to always know how we store and process your
131+
data since it might not be possible to notify you ahead of changes since
132+
we do not store any direct contact information.
133+
</div>
134+
<div class="about">
135+
<h5 class="warning">
136+
NOT AN OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH
137+
MOJANG.
138+
</h5>
139+
</div>
140+
</body>
141+
</html>

0 commit comments

Comments
 (0)