Redirect to Lightbox or page after custom signup?

Hello guys,
I want to redirect my users after they use my custom registration form and press “submit”, but I’m not sure how to do this to re-direct to a lightbox, anyone can give me a hand?

My Code:

import wixUsers from 'wix-users';

$w.onReady(function () {
  $w('#register').onClick( () => {
 let emails = [];
 let labels = [];  
 
    emails.push($w('#email').value);

 // register as member using form data
    wixUsers.register($w('#email').value, $w('#password').value, {
 "contactInfo": {
 "firstName": $w('#userName').value,
 "emails": emails,
 "labels": labels,
      }
    });
 
  });
});