-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtermsofservice.html
More file actions
72 lines (65 loc) · 2.08 KB
/
termsofservice.html
File metadata and controls
72 lines (65 loc) · 2.08 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Terms of Service - Gat0B0t</title>
<style>
body {
font-family: "Segoe UI", sans-serif;
background-color: #0e0e0e;
color: #ffffff;
margin: 0;
padding: 2rem;
}
h1 {
text-align: center;
margin-bottom: 2rem;
text-shadow: 0 0 5px #00ffff;
}
details {
background-color: #1e1e1e;
border: 1px solid #444;
border-radius: 8px;
padding: 1rem;
margin-bottom: 1rem;
}
summary {
font-size: 1.2rem;
font-weight: bold;
cursor: pointer;
}
a {
color: #00bfff;
}
</style>
</head>
<body>
<h1>Terms of Service</h1>
<details>
<summary>1. Acceptance of Terms</summary>
<p>By using Gat0B0t, you agree to these Terms of Service. If you do not agree, do not use the bot.</p>
</details>
<details>
<summary>2. Bot Usage</summary>
<p>You are permitted to invite and use Gat0B0t in your Discord server for personal or community use. Abuse or misuse may result in denial of service.</p>
</details>
<details>
<summary>3. Data Collection</summary>
<p>Gat0B0t only stores moderation actions and XP data per user/server, and only on the host machine. No data is shared externally or tracked for analytics.</p>
</details>
<details>
<summary>4. Availability</summary>
<p>Gat0B0t is self-hosted and may not be online 24/7. Uptime is not guaranteed.</p>
</details>
<details>
<summary>5. Termination</summary>
<p>The developer reserves the right to block or terminate bot access at any time for abuse, spam, or violation of Discord's Terms of Service.</p>
</details>
<details>
<summary>6. Changes to the Terms</summary>
<p>These terms may be updated at any time. Continued use of the bot after changes constitutes acceptance of those changes.</p>
</details>
<p style="text-align: center; margin-top: 2rem;">For questions or feedback, contact the developer on Discord.</p>
</body>
</html>