Static
Handles the submission of the social signup form.
The payload containing the social signup options.
This method is similar to the signup method but is used for social signups.
import Signup from '@auth0/auth0-acul-js/signup';const signupManager = new Signup();signupManager.federatedSignup({ connection: 'google-oauth2'}); Copy
import Signup from '@auth0/auth0-acul-js/signup';const signupManager = new Signup();signupManager.federatedSignup({ connection: 'google-oauth2'});
Retrieves the array of transaction errors from the context, or an empty array if none exist.
An array of error objects from the transaction context.
import Signup from "@auth0/auth0-acul-js/signup";const signupManager = new Signup();signupManager.pickCountryCode(); Copy
import Signup from "@auth0/auth0-acul-js/signup";const signupManager = new Signup();signupManager.pickCountryCode();
This method handles the submission of the signup form.
import Signup from '@auth0/auth0-acul-js/signup';const signupManager = new Signup();signupManager.signup({ email: 'test@example.com', password: 'P@$$wOrd123!',}); Copy
import Signup from '@auth0/auth0-acul-js/signup';const signupManager = new Signup();signupManager.signup({ email: 'test@example.com', password: 'P@$$wOrd123!',});
Handles the submission of the social signup form.