From 58ed95abbf5964ba83d0f6dbe3621ef44080ed98 Mon Sep 17 00:00:00 2001 From: Raelis Date: Fri, 27 Mar 2026 21:14:51 +0100 Subject: [PATCH] Impressum erstellt --- lang/de/app.php | 6 ++++++ lang/en/app.php | 6 ++++++ resources/views/content/imprint.blade.php | 4 +++- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/lang/de/app.php b/lang/de/app.php index a83823f..ff0f4ef 100644 --- a/lang/de/app.php +++ b/lang/de/app.php @@ -54,5 +54,11 @@ return [ 'title' => 'Anwesenheitsbestätigung', 'content' => 'Sollten Sie eine Bestätigung Ihres Besuchs benötigen, stellen wir Ihnen diese selbstverständlich in Papierform aus.' ] + ], + 'imprint' => [ + 'title' => 'Impressum', + 'content' => 'Hiermit weisen wir darauf hin, dass es sich bei dieser Platform um ein Projekt des Chaos Computer Clubs handelt, welche keine rechtlich geltenden Dokumente ausstellt. +
Es handelt sich weder um echte Dienstleistungen im gewerblichen Sinne, noch um geschäftsmäßige Dienste. +
Aus diesem Grund entfällt die Impressumspflicht.' ] ]; diff --git a/lang/en/app.php b/lang/en/app.php index 4f3464f..8025d7e 100644 --- a/lang/en/app.php +++ b/lang/en/app.php @@ -54,5 +54,11 @@ return [ 'title' => 'Certification of Attendance', 'content' => 'Should you require certification of your visit, we will of course provide you with an official document.' ] + ], + 'imprint' => [ + 'title' => 'Imprint', + 'content' => 'We hereby inform you that this platform is a project of the Chaos Computer Club and does not issue any legally binding documents. +
It does not constitute genuine commercial services or business-related services. +
Therefore, the legal requirement to provide an imprint does not apply.' ] ]; diff --git a/resources/views/content/imprint.blade.php b/resources/views/content/imprint.blade.php index 0ea8b70..c9e515b 100644 --- a/resources/views/content/imprint.blade.php +++ b/resources/views/content/imprint.blade.php @@ -3,5 +3,7 @@ @endsection @section('content') - +

{{ __('app.imprint.title') }}

+
+

{!! __('app.imprint.content') !!}

@endsection