The login page is not a “Page” in the normal sense. You can call the login screen from any page with the following function:
import wixUsers from 'wix-users';
wixUsers.promptLogin()
if you want this to happen after say Clicking a button you would create an on click event and the page code would be as follows
Code from Image:
import wixUsers from 'wix-users';
$w.onReady(function () {
});
export function button1_click(event, $w) {
wixUsers.promptLogin()
}
