Lock.js how to default tab to Sign Up?

You can use the Lock initialScreen config option to set the default tab. If a local profile does not exist, you can initialize Lock with the initialScreen set to signUp.

var options = {
  initialScreen: 'signUp'
};
1 Like