diff --git a/public/t35t/index.html b/public/t35t/index.html index 423f9bcdb338f7b7f32ae6edc4316866d5c8d33d..72b65e66c033adbbd2b62807c177bb88248cd4f1 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;