diff --git a/pages/hosting/consent.html b/pages/hosting/consent.html index 94d71cf..2c2f006 100644 --- a/pages/hosting/consent.html +++ b/pages/hosting/consent.html @@ -205,6 +205,17 @@

Electronic Consent

} */ function initializePage() { try { + + // Check if this was launched properly from start_study.html + const urlParams = new URLSearchParams(window.location.search); + const wasLaunched = urlParams.get('launched') === 'true'; + + if (!wasLaunched) { + // Redirect to start page if not launched properly + window.location.replace('./start_study.html'); + return; + } + // Check for mobile device FIRST const deviceInfo = DeviceDetector.getDeviceInfo(); diff --git a/pages/hosting/start_study.html b/pages/hosting/start_study.html new file mode 100644 index 0000000..86d27da --- /dev/null +++ b/pages/hosting/start_study.html @@ -0,0 +1,153 @@ + + + + + + Start Research Study + + + + + +
+
+

Fake Profile Detection Study

+ +
+

Before You Begin

+

+ This study will open in a new browser window. +

+

+ The browser's back button will be disabled during the study to ensure tasks are completed in the correct order. You will need to use the study's navigation buttons to move between tasks. +

+

+ Please complete all tasks in one session. Do not close the new window until you see the completion confirmation. +

+
+ + + + +
+
+
+ + + + \ No newline at end of file