diff --git a/src/resources/views/auth/fullpage_redirect.blade.php b/src/resources/views/auth/fullpage_redirect.blade.php index a1d05f66..4a48d092 100644 --- a/src/resources/views/auth/fullpage_redirect.blade.php +++ b/src/resources/views/auth/fullpage_redirect.blade.php @@ -16,9 +16,15 @@ } else { open(redirectUrl, '_top'); } + + document.getElementById('redirectBtn').addEventListener('click', function () { + window.top.location.href = redirectUrl; + }); + });
+