LineUp-Bot / privacy.html
Brozy123's picture
Update privacy.html
9e4cd8f verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - FriendlyBot</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #10b981;
--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>Privacy Policy</h1>
<p>Last Updated: April 24, 2026</p>
<h2>1. Data We Collect</h2>
<p>FriendlyBot collects only the data necessary to provide its features:</p>
<ul>
<li><strong>Discord User IDs:</strong> To track stats (wins, goals, MOTM) and manage lineups.</li>
<li><strong>Discord Server IDs:</strong> To store server-specific settings and configurations.</li>
<li><strong>Channel IDs:</strong> To manage auto-friendly polls and message cleanup.</li>
</ul>
<h2>2. How We Use Data</h2>
<p>Data is used exclusively for internal bot functionality. We use User IDs to display player profiles and Server IDs to ensure your settings are saved correctly.</p>
<h2>3. Data Retention</h2>
<p>We keep match statistics and settings indefinitely unless the bot is removed from the server or a manual deletion is requested.</p>
<h2>4. Data Sharing</h2>
<p><strong>We do not sell or share your data with third parties.</strong> All data is stored securely on our hosting platform (Hugging Face).</p>
<h2>5. Your Rights</h2>
<p>Users can request their data to be deleted from our records by contacting the bot owner or support team.</p>
</div>
</body>
</html>