0de2eb5830
- Added authentication routes for login, registration, password reset, and account deletion in `auth.py`. - Implemented user profile management, including updating user information and changing passwords. - Created dashboard views to display user-specific information and recent activity in `dashboard.py`. - Developed leaderboard views to show team rankings and points in `leaderboard.py`. - Added QR code generation and redemption functionality in `qr.py` and `redeem.py`. - Implemented team management features, allowing users to create and join teams in `teams.py`. - Introduced session debugging utility to assist with session-related issues in `debug_session.py`. - Configured Docker Compose for MySQL database and FastAPI application with environment variables. - Updated requirements.txt to include necessary dependencies for the application.
33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="container mx-auto p-4">
|
|
<h1 class="text-2xl font-bold text-irish-green mb-4">Privacy Policy</h1>
|
|
<p class="mb-4">
|
|
Your privacy is important to us. This Privacy Policy outlines how LeagueLedger collects, uses, and protects your information.
|
|
</p>
|
|
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Information We Collect</h2>
|
|
<ul class="list-disc ml-6 mb-4">
|
|
<li>Email addresses</li>
|
|
<li>Usernames</li>
|
|
<li>Team names</li>
|
|
<li>Quiz scores and points</li>
|
|
</ul>
|
|
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">How We Use Your Information</h2>
|
|
<p class="mb-4">
|
|
We use your information to:
|
|
</p>
|
|
<ul class="list-disc ml-6 mb-4">
|
|
<li>Track leaderboard rankings</li>
|
|
<li>Send notifications about team activities</li>
|
|
<li>Improve our services and user experience</li>
|
|
</ul>
|
|
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Data Sharing</h2>
|
|
<p class="mb-4">
|
|
We do not share your personal information with third parties except as required by law.
|
|
</p>
|
|
<p class="mb-4">
|
|
Christian Louis IT Beratung und Medienproduktion, as the operator of this platform, takes data privacy seriously and implements measures to protect your personal information.
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|