diff --git a/resources/views/scan.blade.php b/resources/views/scan.blade.php
index 60d4bc1..185fe0b 100644
--- a/resources/views/scan.blade.php
+++ b/resources/views/scan.blade.php
@@ -59,9 +59,9 @@
-
-
-
+
Name and surname:
+
Organization:
+
Photo and video consent:
@@ -137,13 +137,13 @@ function onScanSuccess(decodedText, decodedResult) {
$('#attender_name').empty();
$('#attender_organization').empty();
$('#attender_consent').empty();
- $('#attender_name').append("Name and surname: " + response.data.name);
- $('#attender_organization').append("Organization: " + response.data.organization);
+ $('#attender_name').append(response.data.name);
+ $('#attender_organization').append(response.data.organization);
if(response.data.consent_form == 1){
- $('#attender_consent').append("Photo and video consent: Allowed");
+ $('#attender_consent').append("Allowed");
}
else{
- $('#attender_consent').append("Photo and video consent: Declined");
+ $('#attender_consent').append("Declined");
}
if(!$("body").hasClass("modal-active")) {
toggleModal();