From 076e82213dc7f5b46d743d249d0c369d1e16aacf Mon Sep 17 00:00:00 2001 From: patrickzerhusen Date: Fri, 24 Apr 2026 16:06:26 +0200 Subject: [PATCH] added privacy and imprint pages to meet german DSGVO criteria --- public/index.php | 8 ++++---- public/js/app.js | 24 ------------------------ 2 files changed, 4 insertions(+), 28 deletions(-) diff --git a/public/index.php b/public/index.php index 7423017..994143f 100644 --- a/public/index.php +++ b/public/index.php @@ -100,14 +100,14 @@ if (!$municipality) { Informationen - - + diff --git a/public/js/app.js b/public/js/app.js index 500fb6d..357119d 100644 --- a/public/js/app.js +++ b/public/js/app.js @@ -870,30 +870,6 @@ function showInfoModal() { }); } -// Privacy Modal -function showPrivacyModal() { - Swal.fire({ - title: 'Datenschutz', - html: '

Das Bürgerbeteiligungsportal speichert die von Ihnen ' + - 'hinterlegten Daten zur Durchführung der Bürgerbeteiligung.

' + - '

Ihre Daten werden nicht an Dritte weitergegeben. ' + - 'Details entnehmen Sie bitte der vollständigen Datenschutzerklärung von ' + - MUNICIPALITY.name + '.

', - confirmButtonColor: MUNICIPALITY.primaryColor - }); -} - -// Imprint Modal -function showImprintModal() { - Swal.fire({ - title: 'Impressum', - html: '

Stadt ' + MUNICIPALITY.name + '

' + - '

Die vollständigen Angaben ' + - 'werden hier hinzugefügt, sobald das Portal in den Produktivbetrieb geht.

', - confirmButtonColor: MUNICIPALITY.primaryColor - }); -} - // ===================================================================== // Block 14: Mobile Navigation