I am looking for a feature to redirect user to a specific url after signup is successful. I don’t see any way to do that from the documentation. I am using below config.
var webAuth = new auth0.WebAuth({
domain: ‘@Model.Domain’,
clientID: ‘@Model.ClientId’,
redirectUri: ‘@Model.CallbackUrl’,
responseType:‘code’
});
webAuth.signup({
connection: ‘Username-Password-Authentication’,
email: registerEmail.val(),
password: registerPassword.val(),
state: a0state
}, function (err) {
if (err)
displayRegisterError(err.code);
});