LineUp-Bot / tos.html
Brozy123's picture
Update tos.html
5c2bbc7 verified
<!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 - FriendlyBot</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #5865F2;
--bg: #0f172a;
--card: #1e293b;
--text: #f8fafc;
--text-muted: #94a3b8;
}
body {
font-family: 'Inter', sans-serif;
background-color: var(--bg);
color: var(--text);
line-height: 1.6;
margin: 0;
padding: 2rem;
display: flex;
justify-content: center;
}
.container {
max-width: 800px;
background: var(--card);
padding: 3rem;
border-radius: 1rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
h1 { color: var(--primary); margin-top: 0; }
h2 { border-bottom: 1px solid #334155; padding-bottom: 0.5rem; margin-top: 2rem; }
p { color: var(--text-muted); }
.back-link { display: inline-block; margin-bottom: 2rem; color: var(--primary); text-decoration: none; font-weight: 600; }
</style>
</head>
<body>
<div class="container">
<a href="/" class="back-link">← Back to Dashboard</a>
<h1>Terms of Service</h1>
<p>Last Updated: April 24, 2026</p>
<h2>1. Acceptance of Terms</h2>
<p>By adding FriendlyBot to your Discord server or using its services, you agree to be bound by these Terms of Service. If you do not agree, you must remove the bot from your server immediately.</p>
<h2>2. Use of Service</h2>
<p>FriendlyBot is provided "as is" and "as available". We do not guarantee 100% uptime. You agree not to use the bot for any illegal activities or to violate Discord's own Terms of Service.</p>
<h2>3. Data Collection</h2>
<p>The bot collects and stores minimal data required for its functionality, including User IDs, Server IDs, and match statistics. By using the bot, you consent to this data collection.</p>
<h2>4. Limitations</h2>
<p>We are not responsible for any damage or data loss caused by the use of this bot. We reserve the right to restrict access to any server or user at our discretion.</p>
<h2>5. Changes to Terms</h2>
<p>We reserve the right to modify these terms at any time. Continued use of the bot after changes constitutes acceptance of the new terms.</p>
</div>
</body>
</html>