d595b468e9
- Created a new Impressum page with legal information and contact details. - Developed admin link page for linking QR codes to events with form functionality. - Implemented QR code dashboard for managing QR code sets, including creation and quick actions. - Added detailed view for QR code sets, allowing addition of QR codes and management actions. - Introduced static file serving for favicon and related images. - Established views for static content pages (about, contact, privacy, terms). - Implemented translation management scripts for compiling and updating translations.
49 lines
2.3 KiB
HTML
49 lines
2.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">Kontakt</h1>
|
|
<p class="mb-4">
|
|
Haben Sie Fragen, Anregungen oder Feedback? Wir freuen uns, von Ihnen zu hören!
|
|
</p>
|
|
<div class="mb-6">
|
|
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Kontaktinformationen</h2>
|
|
<p><strong>Christian Louis IT Beratung</strong></p>
|
|
<p>Alter Steinweg 3</p>
|
|
<p>20459 Hamburg</p>
|
|
<p>Deutschland</p>
|
|
<p><strong>Telefon:</strong> +49 179 5183732</p>
|
|
<p><strong>E-Mail:</strong> <span class="email-protection" data-email="leagueledger@kaufdeinquiz.com">leagueledger [at] kaufdeinquiz.com</span></p>
|
|
<p><strong>Fax:</strong> +49 40 97074609</p>
|
|
</div>
|
|
<div>
|
|
<h2 class="text-xl font-semibold text-irish-green mt-6 mb-2">Verbinden Sie sich mit uns</h2>
|
|
<p>Dieses Projekt ist Teil der KaufDeinQuiz-Plattform und wird als Open-Source-Initiative betrieben. Lizenziert unter der Apache License 2.0.</p>
|
|
</div>
|
|
<div class="mt-6">
|
|
<h2 class="text-xl font-semibold text-irish-green mb-2">Verantwortlicher gemäß § 5 TMG</h2>
|
|
<p>Christian Krakau-Louis</p>
|
|
<p>Christian Louis IT Beratung und Medienproduktion</p>
|
|
<p>Alter Steinweg 3</p>
|
|
<p>20459 Hamburg</p>
|
|
</div>
|
|
<div class="mt-6">
|
|
<h2 class="text-xl font-semibold text-irish-green mb-2">Umsatzsteuer-ID</h2>
|
|
<p>Umsatzsteuer-Identifikationsnummer gemäß §27a Umsatzsteuergesetz:</p>
|
|
<p>DE202899017</p>
|
|
</div>
|
|
<div class="mt-6">
|
|
<h2 class="text-xl font-semibold text-irish-green mb-2">Steuernummer</h2>
|
|
<p>48/148/00526</p>
|
|
</div>
|
|
<div class="mt-6">
|
|
<h2 class="text-xl font-semibold text-irish-green mb-2">Streitschlichtung</h2>
|
|
<p>Die Europäische Kommission stellt eine Plattform zur Online-Streitbeilegung (OS) bereit: <a href="https://ec.europa.eu/consumers/odr/" target="_blank" class="text-irish-green hover:underline">https://ec.europa.eu/consumers/odr/</a></p>
|
|
<p>Wir sind nicht bereit oder verpflichtet, an Streitbeilegungsverfahren vor einer Verbraucherschlichtungsstelle teilzunehmen.</p>
|
|
</div>
|
|
|
|
<p class="mt-8 text-sm text-gray-600">
|
|
Letzte Aktualisierung: April 2025
|
|
</p>
|
|
</div>
|
|
{% endblock %}
|