modified: app.py
modified: templates/footer.html modified: templates/landing.html new file: templates/privacy_policy.html new file: templates/terms_of_service.html
This commit is contained in:
10
app.py
10
app.py
@@ -893,6 +893,16 @@ def global_admin_dashboard():
|
||||
return render_template("global_admin_dashboard.html", user_info=g.user_info, bot_running=bot_running)
|
||||
return redirect(url_for("user_landing_page"))
|
||||
|
||||
@app.route("/terms-of-service")
|
||||
def terms_of_service():
|
||||
"""Zeigt die Terms of Service Seite an."""
|
||||
return render_template("terms_of_service.html")
|
||||
|
||||
@app.route("/privacy-policy")
|
||||
def privacy_policy():
|
||||
"""Zeigt die Privacy Policy Seite an."""
|
||||
return render_template("privacy_policy.html")
|
||||
|
||||
@app.route("/logout")
|
||||
def logout():
|
||||
"""Meldet den Benutzer ab."""
|
||||
|
||||
@@ -55,8 +55,8 @@
|
||||
</h5>
|
||||
<ul class="footer-links">
|
||||
<li><a href="{{ url_for('contact') }}"><i class="fas fa-envelope"></i> Contact Us</a></li>
|
||||
<li><a href="#"><i class="fas fa-file-contract"></i> Terms of Service</a></li>
|
||||
<li><a href="#"><i class="fas fa-user-shield"></i> Privacy Policy</a></li>
|
||||
<li><a href="{{ url_for('terms_of_service') }}"><i class="fas fa-file-contract"></i> Terms of Service</a></li>
|
||||
<li><a href="{{ url_for('privacy_policy') }}"><i class="fas fa-user-shield"></i> Privacy Policy</a></li>
|
||||
<li><a href="#"><i class="fas fa-bug"></i> Report Issue</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -381,8 +381,100 @@
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<p><i class="fas fa-code"></i> © 2025 Multus Bot | Built by SimolZimol | Exclusively on Ludi et Historia</p>
|
||||
<div class="row">
|
||||
<!-- About Section -->
|
||||
<div class="col-md-3 mb-3">
|
||||
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
||||
<i class="fas fa-robot" style="color: #667eea;"></i> Multus Bot
|
||||
</h6>
|
||||
<p style="color: #a0aec0; font-size: 0.85rem; line-height: 1.4;">
|
||||
Advanced Discord moderation and management bot with AI-powered automation.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<!-- Quick Links -->
|
||||
<div class="col-md-3 mb-3">
|
||||
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
||||
<i class="fas fa-link" style="color: #667eea;"></i> Links
|
||||
</h6>
|
||||
<ul style="list-style: none; padding: 0; margin: 0;">
|
||||
<li style="margin-bottom: 0.5rem;">
|
||||
<a href="{{ url_for('about') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
||||
<i class="fas fa-info-circle" style="width: 16px;"></i> About
|
||||
</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 0.5rem;">
|
||||
<a href="{{ url_for('faq') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
||||
<i class="fas fa-question-circle" style="width: 16px;"></i> FAQ
|
||||
</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 0.5rem;">
|
||||
<a href="{{ url_for('contact') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
||||
<i class="fas fa-envelope" style="width: 16px;"></i> Contact
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Legal -->
|
||||
<div class="col-md-3 mb-3">
|
||||
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
||||
<i class="fas fa-gavel" style="color: #667eea;"></i> Legal
|
||||
</h6>
|
||||
<ul style="list-style: none; padding: 0; margin: 0;">
|
||||
<li style="margin-bottom: 0.5rem;">
|
||||
<a href="{{ url_for('terms_of_service') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
||||
<i class="fas fa-file-contract" style="width: 16px;"></i> Terms of Service
|
||||
</a>
|
||||
</li>
|
||||
<li style="margin-bottom: 0.5rem;">
|
||||
<a href="{{ url_for('privacy_policy') }}" style="color: #a0aec0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s;">
|
||||
<i class="fas fa-shield-alt" style="width: 16px;"></i> Privacy Policy
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Contact Info -->
|
||||
<div class="col-md-3 mb-3">
|
||||
<h6 style="color: #e2e8f0; font-weight: 600; margin-bottom: 1rem;">
|
||||
<i class="fas fa-headset" style="color: #667eea;"></i> Support
|
||||
</h6>
|
||||
<p style="color: #a0aec0; font-size: 0.85rem; margin-bottom: 0.5rem;">
|
||||
<i class="fab fa-discord" style="color: #667eea; width: 16px;"></i> @simolzimol
|
||||
</p>
|
||||
<p style="color: #a0aec0; font-size: 0.85rem; margin-bottom: 0.5rem;">
|
||||
<i class="fas fa-server" style="color: #667eea; width: 16px;"></i> Ludi et Historia
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<hr style="border-color: rgba(102, 126, 234, 0.2); margin: 1.5rem 0 1rem 0;">
|
||||
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-6 text-center text-md-left">
|
||||
<p style="margin: 0; color: #64748b; font-size: 0.85rem;">
|
||||
<i class="fas fa-code"></i> © 2025 Multus Bot | Built by SimolZimol
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-6 text-center text-md-right">
|
||||
<p style="margin: 0; color: #64748b; font-size: 0.85rem;">
|
||||
<i class="fas fa-code-branch" style="color: #667eea;"></i> Version dev-0.8.3
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<style>
|
||||
.footer a:hover {
|
||||
color: #667eea !important;
|
||||
transform: translateX(3px);
|
||||
}
|
||||
|
||||
.footer a {
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
</style>
|
||||
</footer>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
|
||||
|
||||
422
templates/privacy_policy.html
Normal file
422
templates/privacy_policy.html
Normal file
@@ -0,0 +1,422 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Privacy Policy - Multus Bot</title>
|
||||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
background: linear-gradient(135deg, #0c1426 0%, #1a1f2e 25%, #2d3748 75%, #0c1426 100%);
|
||||
min-height: 100vh;
|
||||
color: #e2e8f0;
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.privacy-container {
|
||||
background: rgba(26, 31, 46, 0.9);
|
||||
backdrop-filter: blur(15px);
|
||||
border: 1px solid rgba(102, 126, 234, 0.2);
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
||||
padding: 3rem;
|
||||
margin: 2rem auto;
|
||||
max-width: 1000px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.privacy-header {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
padding-bottom: 2rem;
|
||||
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
|
||||
}
|
||||
|
||||
.privacy-title {
|
||||
color: #f8fafc;
|
||||
font-weight: 700;
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.privacy-icon {
|
||||
color: #667eea;
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.privacy-subtitle {
|
||||
color: #a0aec0;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.privacy-content {
|
||||
line-height: 1.8;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.privacy-section {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
color: #f8fafc;
|
||||
font-weight: 600;
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 1rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.section-icon {
|
||||
color: #667eea;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.privacy-text {
|
||||
color: #cbd5e0;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.privacy-list {
|
||||
color: #cbd5e0;
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
|
||||
.privacy-list li {
|
||||
margin-bottom: 0.8rem;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: #ffd700;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.data-type {
|
||||
background: rgba(102, 126, 234, 0.1);
|
||||
border-left: 4px solid #667eea;
|
||||
padding: 1rem;
|
||||
margin: 1rem 0;
|
||||
border-radius: 0 10px 10px 0;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
border: none;
|
||||
color: white;
|
||||
padding: 0.75rem 2rem;
|
||||
border-radius: 50px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.back-button:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
background: rgba(45, 55, 72, 0.6);
|
||||
border: 1px solid rgba(102, 126, 234, 0.2);
|
||||
border-radius: 15px;
|
||||
padding: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.effective-date {
|
||||
background: rgba(102, 126, 234, 0.1);
|
||||
border-left: 4px solid #667eea;
|
||||
padding: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 0 10px 10px 0;
|
||||
color: #e2e8f0;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.retention-period {
|
||||
background: rgba(255, 215, 0, 0.1);
|
||||
border: 1px solid rgba(255, 215, 0, 0.3);
|
||||
border-radius: 10px;
|
||||
padding: 1rem;
|
||||
margin: 1rem 0;
|
||||
color: #ffd700;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% include 'navigation.html' %}
|
||||
|
||||
<div class="container-fluid" style="flex: 1;">
|
||||
<div class="privacy-container">
|
||||
<div class="privacy-header">
|
||||
<h1 class="privacy-title">
|
||||
<i class="fas fa-shield-alt privacy-icon"></i>
|
||||
Privacy Policy
|
||||
</h1>
|
||||
<p class="privacy-subtitle">How we collect, use, and protect your information</p>
|
||||
</div>
|
||||
|
||||
<div class="effective-date">
|
||||
<i class="fas fa-calendar-alt"></i> <strong>Effective Date:</strong> August 24, 2025 | <strong>Last Updated:</strong> August 24, 2025
|
||||
</div>
|
||||
|
||||
<div class="privacy-content">
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-info-circle section-icon"></i>
|
||||
1. Introduction
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
This Privacy Policy describes how Multus Bot ("we", "our", or "us") collects, uses, and shares your personal information
|
||||
when you use our Discord bot and web services (the "Service").
|
||||
</p>
|
||||
<p class="privacy-text">
|
||||
We are committed to protecting your privacy and being transparent about our data practices.
|
||||
This policy explains what information we collect, why we collect it, and how you can manage your data.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-database section-icon"></i>
|
||||
2. Information We Collect
|
||||
</h2>
|
||||
|
||||
<div class="data-type">
|
||||
<h4><i class="fas fa-user"></i> <span class="highlight">Discord Account Information</span></h4>
|
||||
<ul class="privacy-list">
|
||||
<li>Discord User ID (unique identifier)</li>
|
||||
<li>Username and discriminator</li>
|
||||
<li>Avatar URL</li>
|
||||
<li>Server membership information</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="data-type">
|
||||
<h4><i class="fas fa-comments"></i> <span class="highlight">Message Data</span></h4>
|
||||
<ul class="privacy-list">
|
||||
<li>Message content for moderation context</li>
|
||||
<li>Message timestamps and IDs</li>
|
||||
<li>Channel and server context</li>
|
||||
<li>Reaction data and interactions</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="data-type">
|
||||
<h4><i class="fas fa-chart-line"></i> <span class="highlight">Usage and Activity Data</span></h4>
|
||||
<ul class="privacy-list">
|
||||
<li>Warning and moderation history</li>
|
||||
<li>Command usage statistics</li>
|
||||
<li>Login times and session data</li>
|
||||
<li>Web panel interactions</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="data-type">
|
||||
<h4><i class="fas fa-server"></i> <span class="highlight">Server Information</span></h4>
|
||||
<ul class="privacy-list">
|
||||
<li>Server ID and name</li>
|
||||
<li>Channel configuration</li>
|
||||
<li>Role and permission settings</li>
|
||||
<li>Bot configuration preferences</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-cogs section-icon"></i>
|
||||
3. How We Use Your Information
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
We use the collected information for the following purposes:
|
||||
</p>
|
||||
<ul class="privacy-list">
|
||||
<li><strong>Service Operation:</strong> To provide moderation, management, and administrative features</li>
|
||||
<li><strong>User Experience:</strong> To personalize your experience and maintain user preferences</li>
|
||||
<li><strong>Moderation:</strong> To enforce server rules and maintain community safety</li>
|
||||
<li><strong>Analytics:</strong> To understand usage patterns and improve service quality</li>
|
||||
<li><strong>Communication:</strong> To send important updates and respond to support requests</li>
|
||||
<li><strong>Security:</strong> To detect and prevent abuse, spam, and security threats</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-clock section-icon"></i>
|
||||
4. Data Retention
|
||||
</h2>
|
||||
<div class="retention-period">
|
||||
<h4><i class="fas fa-hourglass-half"></i> Retention Periods</h4>
|
||||
<ul class="privacy-list">
|
||||
<li><strong>User Account Data:</strong> Retained while you use the service and for 30 days after last activity</li>
|
||||
<li><strong>Moderation Logs:</strong> Kept for 1 year for accountability and appeals</li>
|
||||
<li><strong>Message Context:</strong> Archived messages retained for 90 days</li>
|
||||
<li><strong>Analytics Data:</strong> Aggregated data retained indefinitely for service improvement</li>
|
||||
<li><strong>Session Data:</strong> Cleared after 24 hours of inactivity</li>
|
||||
</ul>
|
||||
</div>
|
||||
<p class="privacy-text">
|
||||
Data may be retained longer if required by law or for legitimate business purposes such as security investigations.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-share-alt section-icon"></i>
|
||||
5. Data Sharing and Disclosure
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
We do not sell, trade, or rent your personal information to third parties. We may share your information only in the following circumstances:
|
||||
</p>
|
||||
<ul class="privacy-list">
|
||||
<li><strong>Discord Platform:</strong> As required for bot functionality through Discord's API</li>
|
||||
<li><strong>Server Administrators:</strong> Moderation data may be visible to server moderators and administrators</li>
|
||||
<li><strong>Legal Requirements:</strong> When required by law, court order, or government regulation</li>
|
||||
<li><strong>Service Providers:</strong> With trusted third-party services that help us operate (hosting, analytics)</li>
|
||||
<li><strong>Safety and Security:</strong> To protect the rights, property, or safety of our users or others</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-lock section-icon"></i>
|
||||
6. Data Security
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
We implement appropriate technical and organizational security measures to protect your personal information:
|
||||
</p>
|
||||
<ul class="privacy-list">
|
||||
<li>Encrypted data transmission using HTTPS/TLS</li>
|
||||
<li>Secure database storage with access controls</li>
|
||||
<li>Regular security updates and monitoring</li>
|
||||
<li>Limited access to personal data on a need-to-know basis</li>
|
||||
<li>Secure authentication through Discord OAuth2</li>
|
||||
</ul>
|
||||
<p class="privacy-text">
|
||||
While we strive to protect your information, no method of transmission over the internet is 100% secure.
|
||||
We cannot guarantee absolute security but continuously work to improve our security measures.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-user-cog section-icon"></i>
|
||||
7. Your Rights and Choices
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
You have the following rights regarding your personal information:
|
||||
</p>
|
||||
<ul class="privacy-list">
|
||||
<li><strong>Access:</strong> Request information about what personal data we have about you</li>
|
||||
<li><strong>Correction:</strong> Request correction of inaccurate or incomplete data</li>
|
||||
<li><strong>Deletion:</strong> Request deletion of your personal data (subject to retention requirements)</li>
|
||||
<li><strong>Portability:</strong> Request a copy of your data in a machine-readable format</li>
|
||||
<li><strong>Objection:</strong> Object to processing of your data for certain purposes</li>
|
||||
<li><strong>Restriction:</strong> Request restriction of processing under certain circumstances</li>
|
||||
</ul>
|
||||
<p class="privacy-text">
|
||||
To exercise these rights, please contact us through our <a href="{{ url_for('contact') }}" style="color: #667eea;">contact form</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-cookie-bite section-icon"></i>
|
||||
8. Cookies and Tracking
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
Our web service uses the following types of cookies and tracking technologies:
|
||||
</p>
|
||||
<ul class="privacy-list">
|
||||
<li><strong>Essential Cookies:</strong> Required for authentication and session management</li>
|
||||
<li><strong>Functional Cookies:</strong> To remember your preferences and settings</li>
|
||||
<li><strong>Analytics Cookies:</strong> To understand how you use our service (anonymized)</li>
|
||||
</ul>
|
||||
<p class="privacy-text">
|
||||
You can control cookies through your browser settings, but disabling essential cookies may affect service functionality.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-child section-icon"></i>
|
||||
9. Children's Privacy
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
Our Service is intended for users who are at least 13 years old, in compliance with Discord's Terms of Service.
|
||||
We do not knowingly collect personal information from children under 13.
|
||||
</p>
|
||||
<p class="privacy-text">
|
||||
If we become aware that we have collected personal information from a child under 13,
|
||||
we will take steps to delete such information promptly.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="privacy-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-edit section-icon"></i>
|
||||
10. Changes to This Privacy Policy
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
We may update this Privacy Policy from time to time. We will notify you of any material changes by:
|
||||
</p>
|
||||
<ul class="privacy-list">
|
||||
<li>Posting the new Privacy Policy on this page</li>
|
||||
<li>Updating the "Last Updated" date at the top of this policy</li>
|
||||
<li>Providing notice through our service or other communication methods</li>
|
||||
</ul>
|
||||
<p class="privacy-text">
|
||||
Your continued use of the Service after the effective date of the revised Privacy Policy
|
||||
constitutes acceptance of the revised policy.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="contact-info">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-envelope section-icon"></i>
|
||||
Contact Us
|
||||
</h2>
|
||||
<p class="privacy-text">
|
||||
If you have any questions about this Privacy Policy or our data practices, please contact us:
|
||||
</p>
|
||||
<ul class="privacy-list">
|
||||
<li><i class="fas fa-envelope"></i> Email: <a href="{{ url_for('contact') }}" style="color: #667eea;">Contact Form</a></li>
|
||||
<li><i class="fab fa-discord"></i> Discord: Through our support server</li>
|
||||
<li><i class="fas fa-globe"></i> Website: This web panel</li>
|
||||
<li><i class="fas fa-file-contract"></i> Legal: <a href="{{ url_for('terms_of_service') }}" style="color: #667eea;">Terms of Service</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<a href="{{ url_for('landing_page') }}" class="back-button">
|
||||
<i class="fas fa-arrow-left"></i> Back to Home
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include 'footer.html' %}
|
||||
</body>
|
||||
</html>
|
||||
323
templates/terms_of_service.html
Normal file
323
templates/terms_of_service.html
Normal file
@@ -0,0 +1,323 @@
|
||||
<!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 - Multus Bot</title>
|
||||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
background: linear-gradient(135deg, #0c1426 0%, #1a1f2e 25%, #2d3748 75%, #0c1426 100%);
|
||||
min-height: 100vh;
|
||||
color: #e2e8f0;
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.terms-container {
|
||||
background: rgba(26, 31, 46, 0.9);
|
||||
backdrop-filter: blur(15px);
|
||||
border: 1px solid rgba(102, 126, 234, 0.2);
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
|
||||
padding: 3rem;
|
||||
margin: 2rem auto;
|
||||
max-width: 1000px;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.terms-header {
|
||||
text-align: center;
|
||||
margin-bottom: 3rem;
|
||||
padding-bottom: 2rem;
|
||||
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
|
||||
}
|
||||
|
||||
.terms-title {
|
||||
color: #f8fafc;
|
||||
font-weight: 700;
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.terms-icon {
|
||||
color: #667eea;
|
||||
font-size: 2.5rem;
|
||||
}
|
||||
|
||||
.terms-subtitle {
|
||||
color: #a0aec0;
|
||||
font-size: 1.2rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.terms-content {
|
||||
line-height: 1.8;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.terms-section {
|
||||
margin-bottom: 2.5rem;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
color: #f8fafc;
|
||||
font-weight: 600;
|
||||
font-size: 1.4rem;
|
||||
margin-bottom: 1rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 1px solid rgba(102, 126, 234, 0.1);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.section-icon {
|
||||
color: #667eea;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.terms-text {
|
||||
color: #cbd5e0;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.terms-list {
|
||||
color: #cbd5e0;
|
||||
padding-left: 1.5rem;
|
||||
}
|
||||
|
||||
.terms-list li {
|
||||
margin-bottom: 0.8rem;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: #ffd700;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
border: none;
|
||||
color: white;
|
||||
padding: 0.75rem 2rem;
|
||||
border-radius: 50px;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.back-button:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.contact-info {
|
||||
background: rgba(45, 55, 72, 0.6);
|
||||
border: 1px solid rgba(102, 126, 234, 0.2);
|
||||
border-radius: 15px;
|
||||
padding: 2rem;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.effective-date {
|
||||
background: rgba(102, 126, 234, 0.1);
|
||||
border-left: 4px solid #667eea;
|
||||
padding: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
border-radius: 0 10px 10px 0;
|
||||
color: #e2e8f0;
|
||||
font-style: italic;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
{% include 'navigation.html' %}
|
||||
|
||||
<div class="container-fluid" style="flex: 1;">
|
||||
<div class="terms-container">
|
||||
<div class="terms-header">
|
||||
<h1 class="terms-title">
|
||||
<i class="fas fa-file-contract terms-icon"></i>
|
||||
Terms of Service
|
||||
</h1>
|
||||
<p class="terms-subtitle">Legal terms and conditions for using Multus Bot</p>
|
||||
</div>
|
||||
|
||||
<div class="effective-date">
|
||||
<i class="fas fa-calendar-alt"></i> <strong>Effective Date:</strong> August 24, 2025 | <strong>Last Updated:</strong> August 24, 2025
|
||||
</div>
|
||||
|
||||
<div class="terms-content">
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-handshake section-icon"></i>
|
||||
1. Acceptance of Terms
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
By using Multus Bot (the "Service"), you agree to be bound by these Terms of Service ("Terms").
|
||||
If you disagree with any part of these terms, then you may not access the Service.
|
||||
</p>
|
||||
<p class="terms-text">
|
||||
These Terms apply to all users of the Service, including without limitation users who are browsers,
|
||||
server administrators, or contributors of content.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-cogs section-icon"></i>
|
||||
2. Description of Service
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
Multus Bot is a Discord moderation and management bot that provides:
|
||||
</p>
|
||||
<ul class="terms-list">
|
||||
<li>Automated moderation features including warning and mute systems</li>
|
||||
<li>User management and permission controls</li>
|
||||
<li>Message archiving and context preservation</li>
|
||||
<li>Web-based administration panel</li>
|
||||
<li>User statistics and leaderboards</li>
|
||||
<li>Giveaway management systems</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-user-shield section-icon"></i>
|
||||
3. User Responsibilities
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
You are responsible for:
|
||||
</p>
|
||||
<ul class="terms-list">
|
||||
<li>Providing accurate information when using the Service</li>
|
||||
<li>Maintaining the confidentiality of your Discord account</li>
|
||||
<li>Using the Service in compliance with Discord's Terms of Service</li>
|
||||
<li>Not attempting to circumvent or abuse the moderation systems</li>
|
||||
<li>Respecting other users and maintaining appropriate behavior</li>
|
||||
<li>Not using the Service for any illegal or unauthorized purpose</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-ban section-icon"></i>
|
||||
4. Prohibited Conduct
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
You may not use our Service to:
|
||||
</p>
|
||||
<ul class="terms-list">
|
||||
<li>Violate any local, state, national, or international law</li>
|
||||
<li>Harass, abuse, or harm other users</li>
|
||||
<li>Attempt to gain unauthorized access to the Service</li>
|
||||
<li>Distribute malware, viruses, or malicious code</li>
|
||||
<li>Spam or send unsolicited communications</li>
|
||||
<li>Impersonate others or provide false information</li>
|
||||
<li>Interfere with the Service's operation or security</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-database section-icon"></i>
|
||||
5. Data and Privacy
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
Our handling of your data is governed by our <a href="{{ url_for('privacy_policy') }}" style="color: #667eea;">Privacy Policy</a>.
|
||||
By using the Service, you consent to the collection and use of information as outlined in the Privacy Policy.
|
||||
</p>
|
||||
<p class="terms-text">
|
||||
<span class="highlight">Data Storage:</span> We store Discord user IDs, usernames, message content for moderation purposes,
|
||||
and usage statistics. This data is used solely for providing and improving the Service.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-exclamation-triangle section-icon"></i>
|
||||
6. Disclaimers and Limitations
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
<span class="highlight">Service Availability:</span> The Service is provided "as is" without any warranty.
|
||||
We do not guarantee that the Service will be uninterrupted or error-free.
|
||||
</p>
|
||||
<p class="terms-text">
|
||||
<span class="highlight">Limitation of Liability:</span> In no event shall Multus Bot be liable for any
|
||||
indirect, incidental, special, consequential, or punitive damages arising from your use of the Service.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-user-times section-icon"></i>
|
||||
7. Termination
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
We may terminate or suspend your access to the Service immediately, without prior notice,
|
||||
for any reason whatsoever, including without limitation if you breach the Terms.
|
||||
</p>
|
||||
<p class="terms-text">
|
||||
Upon termination, your right to use the Service will cease immediately.
|
||||
Data associated with your account may be retained for a reasonable period as outlined in our Privacy Policy.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="terms-section">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-edit section-icon"></i>
|
||||
8. Changes to Terms
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
We reserve the right to modify or replace these Terms at any time.
|
||||
If a revision is material, we will try to provide at least 30 days notice prior to any new terms taking effect.
|
||||
</p>
|
||||
<p class="terms-text">
|
||||
Your continued use of the Service after the effective date of the revised Terms
|
||||
constitutes acceptance of the revised Terms.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="contact-info">
|
||||
<h2 class="section-title">
|
||||
<i class="fas fa-envelope section-icon"></i>
|
||||
Contact Information
|
||||
</h2>
|
||||
<p class="terms-text">
|
||||
If you have any questions about these Terms of Service, please contact us:
|
||||
</p>
|
||||
<ul class="terms-list">
|
||||
<li><i class="fas fa-envelope"></i> Email: <a href="{{ url_for('contact') }}" style="color: #667eea;">Contact Form</a></li>
|
||||
<li><i class="fab fa-discord"></i> Discord: Through our support server</li>
|
||||
<li><i class="fas fa-globe"></i> Website: This web panel</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="text-center">
|
||||
<a href="{{ url_for('landing_page') }}" class="back-button">
|
||||
<i class="fas fa-arrow-left"></i> Back to Home
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include 'footer.html' %}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user