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.
24 lines
1.0 KiB
HTML
24 lines
1.0 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">Contact Us</h1>
|
|
<p class="mb-4">
|
|
Have questions, suggestions, or feedback? We'd love to hear from you!
|
|
</p>
|
|
<div class="mb-6">
|
|
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Contact Information</h2>
|
|
<p><strong>Christian Louis IT Beratung</strong></p>
|
|
<p>Alter Steinweg 3</p>
|
|
<p>20459 Hamburg</p>
|
|
<p>Deutschland</p>
|
|
<p><strong>Phone:</strong> +49 179 5183732</p>
|
|
<p><strong>Email:</strong> <a href="mailto:quizarium@kaufdeinquiz.com">quizarium@kaufdeinquiz.com</a></p>
|
|
<p><strong>Fax:</strong> +49 40 97074609</p>
|
|
</div>
|
|
<div>
|
|
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Connect With Us</h2>
|
|
<p>This project is part of the KaufDeinQuiz platform and is operated as an Open-Source initiative. All rights reserved.</p>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|