Hierarchy

  • BaseContext
    • Signup

Implements

Constructors

Properties

branding: BrandingMembers
organization: OrganizationMembers
untrustedData: UntrustedDataMembers
screenIdentifier: string = ScreenIds.SIGNUP

Methods

  • Returns Promise<void>

    import Signup from "@auth0/auth0-acul-js/signup";
    const signupManager = new Signup();

    signupManager.pickCountryCode();
  • Parameters

    Returns Promise<void>

    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!',
    });
  • Handles the submission of the social signup form.

    Parameters

    Returns Promise<void>

    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.socialSignup({
    connection: 'google-oauth2'
    });