From 1f585f711d4b078215dcb25b0699396d0d3fedcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torben=20B=C3=B6hnke?= <torben.boehnke-makerspace@rub.de> Date: Fri, 25 Oct 2024 14:49:55 +0200 Subject: [PATCH] update t35t --- public/t35t/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/t35t/index.html b/public/t35t/index.html index 423f9bcdb..72b65e66c 100644 --- a/public/t35t/index.html +++ b/public/t35t/index.html @@ -732,12 +732,12 @@ Alternativ kannst Du uns auch eine E-Mail an <a href="mailto:makerspace@rub.de"> // Build the formatted message var formattedMessage = - "Vorname: " + vorname + " " + "\n" + - "Nachname: " + nachname + " " + "\n" + - "E-Mail: " + email + " " + "\n" + - "Telefonnummer: " + tel + " " + "\n" + - "Nachricht: " + " " + "\n" + nachricht + " " + "\n" + - "Einverständnis Datenschutz: " + dataPrivacyChecked; + "<strong>Vorname:</strong> " + vorname + "<br>" + + "<strong>Nachname:</strong> " + nachname + "<br>" + + "<strong>E-Mail:</strong> " + email + "<br>" + + "<strong>Telefonnummer:</strong> " + tel + "<br><br>" + + "<strong>Nachricht:</strong><br>" + nachricht + "<br><br>" + + "<strong>Einverständnis Datenschutz:</strong> " + dataPrivacyChecked; // Set the value of the hidden field document.getElementById('formatted_message').value = formattedMessage; -- GitLab