-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtos.html
104 lines (85 loc) · 5.32 KB
/
tos.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zuru | Terms of Service</title>
<link rel="icon" href="./img/logo.png" type="image/png">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/tos.css">
</head>
<body class="d-flex flex-column min-vh-100">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark py-3">
<div class="container">
<a class="navbar-brand" href="/">
<img src="/img/logo.png" alt="Logo" width="40" height="40">
Zuru
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="/">Home</a></li>
<li class="nav-item"><a class="nav-link" href="https://discord.gg/QdA7BNyZ8V">Join Our Discord</a></li>
<li class="nav-item"><a class="nav-link" href="commands">Commands</a></li>
<li class="nav-item"><a class="nav-link" href="status">Status</a></li>
<li class="nav-item"><a class="nav-link" href="privacy">Privacy</a></li>
<li class="nav-item">
<a class="btn btn-premium" href="https://donate.pistoncube.com.ar/">Get Premium</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Terms of Service Section -->
<div class="container tos-section py-5">
<h1 class="text-center mb-4">Terms of Service</h1>
<p><strong>Last Updated:</strong> November 20, 2024</p>
<h2>1. Responsible Use</h2>
<p>It is not allowed to abuse the bot's commands or use them excessively in a way that could affect its functionality or other users' experience.</p>
<h2>2. Prohibition of Malicious Use</h2>
<p>Using the bot for illegal, defamatory, malicious, or otherwise prohibited activities that violate the Discord server's rules is strictly forbidden.</p>
<h2>3. Compliance with Server Rules</h2>
<p>The use of the bot must adhere to the rules established by the server. Users are responsible for any command that violates these rules.</p>
<h2>4. Avoiding Spam</h2>
<p>Repetitive use of commands that generates spam in server channels is not allowed.</p>
<h2>5. Prohibition of Inappropriate Content</h2>
<p>Any inappropriate, offensive, or violent content generated through the bot will result in sanctions.</p>
<h2>6. User Responsibility</h2>
<p>Users are responsible for the commands they execute and the actions carried out using the bot.</p>
<h2>7. Moderation and Restrictions</h2>
<p>Server administrators have the right to restrict the bot's access to certain users or channels as necessary.</p>
<h2>8. Do Not Tamper with the Bot</h2>
<p>Attempting to hack, disable, or modify the bot's functionality is strictly prohibited.</p>
<h2>9. Updates and Changes</h2>
<p>The bot's commands and features may change without prior notice. Users should stay informed about updates.</p>
<h2>10. Privacy</h2>
<p>The bot does not collect or store users' personal information beyond what is necessary to perform its functions.</p>
<h2>11. Usage Limits</h2>
<p>Some bot functions may be subject to limits based on time, usage frequency, or permissions set by server administrators.</p>
<h2>12. Reporting Issues</h2>
<p>Users should report any errors, malfunctions, or misuse of the bot to the server administrators or developers.</p>
<h2>13. Prohibition of Automated Bots</h2>
<p>Using other bots or scripts to interact with Zurubot in an automated manner is not permitted.</p>
<h2>14. Service Suspension</h2>
<p>The bot may be temporarily or permanently disabled without prior notice if inappropriate use is detected.</p>
<h2>15. Acceptance of Terms</h2>
<p>By using Zurubot, users agree to these terms and conditions. Non-compliance may result in usage restrictions or expulsion from the server.</p>
<h2>Contacting the Developers</h2>
<p>For questions, suggestions, or reporting issues, users can contact the Zurubot development team.</p>
</div>
<!-- Footer -->
<footer class="bg-black text-center text-white py-3 mt-auto">
<p>© 2019 - <span id="year"></span> <strong class="px-1 sitename"><a href="#" class="text-white">PistonProjects</a></strong> All Rights Reserved</p>
</footer>
<!-- Bootstrap JS and dependencies -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>