Files
gh-christianlouis-leagueledger/app/templates/terms.html
T
Christian Krakau-Louis 0de2eb5830 Implement user authentication and management system with FastAPI
- 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.
2025-04-11 17:46:59 +02:00

28 lines
1.3 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">Terms of Service</h1>
<p class="mb-4">
Welcome to LeagueLedger! By using our platform, you agree to comply with the following terms and conditions.
</p>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Acceptable Use</h2>
<ul class="list-disc ml-6 mb-4">
<li>No cheating or unfair practices</li>
<li>Respectful communication with other users</li>
<li>Compliance with all applicable laws and regulations</li>
</ul>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Liability Disclaimer</h2>
<p class="mb-4">
LeagueLedger is provided "as is" without any warranties. We are not liable for any damages arising from your use of the platform.
</p>
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Governing Law</h2>
<p class="mb-4">
These terms shall be governed by and construed in accordance with the laws of Germany.
</p>
<p class="mb-4">
This project is part of the KaufDeinQuiz platform and is operated as an Open-Source initiative. All rights reserved.
</p>
<p>Christian Louis IT Beratung und Medienproduktion is responsible for the operation of this platform.</p>
</div>
{% endblock %}