> ## Documentation Index
> Fetch the complete documentation index at: https://docs-staging-actions-triggers-prototype.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# SignupPassword

> Describes all the hooks and methods available to customize the Universal Login `signup-password` screen.

The `signup-password` screen collects the user's password to complete account creation. It is the second step of a multi-step signup flow, following identifier collection. It also supports federated signup via social or enterprise connections.

<Frame>
  <img style={{maxHeight:"400px"}} src="https://mintcdn.com/docs-staging-actions-triggers-prototype/pxNrg7KHBDx_pfH6/docs/images/cdy7uua7fh8z/5h85r3sVhe8mVw7rDkDwTD/02c3521d9d6c4d490c1a64ae37ecca72/Signup_Password_with_Flexible_IDs.png?fit=max&auto=format&n=pxNrg7KHBDx_pfH6&q=85&s=15f750912a5bd6827b0b99383a64250f" alt="Signup Password with Flexible IDs" width="480" height="1032" data-path="docs/images/cdy7uua7fh8z/5h85r3sVhe8mVw7rDkDwTD/02c3521d9d6c4d490c1a64ae37ecca72/Signup_Password_with_Flexible_IDs.png" />
</Frame>

## Import

Each screen has its own set of hooks and methods. The SDK supports **partial import** and **root import** for each screen.

* Using partial import allows you to include only the code you need for your specific use case.
* Using root import allows you to load all screens from a single bundle, which is useful when you want a unified build to handle all possible screens.

```jsx Import Example theme={null}
// root import
import { useSignupPassword } from '@auth0/auth0-acul-react';

// partial import
import {
  useSignupPassword,
  // Context hooks
  useUser,
  useTenant,
  useBranding,
  useClient,
  useOrganization,
  usePrompt,
  useScreen,
  useTransaction,
  useUntrustedData,
  // Common hooks
  useCurrentScreen,
  useAuth0Themes,
  useErrors,
  // Utility hooks
  useChangeLanguage,
  usePasswordValidation,
  // Methods
  signup,
  federatedSignup,
  switchConnection,
} from '@auth0/auth0-acul-react/signup-password';

function SignupPasswordForm() {
  const { signup } = useSignupPassword();
  return (
    <button onClick={() => signup({ password: 'secret' })}>
      Create Account
    </button>
  );
}
```

## Context Hooks

Screen-scoped hooks that provide read-only access to Auth0 context data on the `signup-password` screen. Import them from `@auth0/auth0-acul-react/signup-password`.

<ParamField body="useBranding" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/BrandingMembers">BrandingMembers</a></span>}>
  This hook provides branding configurations, such as logo, colors, and theme settings displayed on the `signup-password` screen.

  ```jsx Example theme={null}
  import { useBranding } from '@auth0/auth0-acul-react/signup-password';
  function CustomTheme() {
    const branding = useBranding();
  }
  ```
</ParamField>

<ParamField body="useClient" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/ClientMembers">ClientMembers</a></span>}>
  This hook provides client-related configurations, such as `id`, `name`, and `logoUrl`, for the `signup-password` screen.

  ```jsx Example theme={null}
  import { useClient } from '@auth0/auth0-acul-react/signup-password';
  function AppInfo() {
    const client = useClient();
  }
  ```
</ParamField>

<ParamField body="useOrganization" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/OrganizationMembers">OrganizationMembers</a></span>}>
  This hook provides information about the user's Organization if the signup is Organization scoped. Returns `null` when no Organization context is present.

  ```jsx Example theme={null}
  import { useOrganization } from '@auth0/auth0-acul-react/signup-password';
  function OrgSelector() {
    const organization = useOrganization();
    if (!organization) {
      return <p>No organization context</p>;
    }
  }
  ```
</ParamField>

<ParamField body="usePrompt" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/PromptMembers">PromptMembers</a></span>}>
  This hook contains data about the current prompt in the authentication flow.

  ```jsx Example theme={null}
  import { usePrompt } from '@auth0/auth0-acul-react/signup-password';
  function FlowInfo() {
    const prompt = usePrompt();
  }
  ```
</ParamField>

<ParamField body="useScreen" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/ScreenMembersOnSignupPassword">ScreenMembersOnSignupPassword</a></span>}>
  This hook contains details specific to the `signup-password` screen, including its configuration and context.

  ```jsx Example theme={null}
  import { useScreen } from '@auth0/auth0-acul-react/signup-password';
  function ScreenDebug() {
    const screen = useScreen();
  }
  ```
</ParamField>

<ParamField body="useTenant" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/TenantMembers">TenantMembers</a></span>}>
  This hook contains data related to the tenant, such as `id` and associated metadata.

  ```jsx Example theme={null}
  import { useTenant } from '@auth0/auth0-acul-react/signup-password';
  function TenantInfo() {
    const tenant = useTenant();
  }
  ```
</ParamField>

<ParamField body="useTransaction" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/TransactionMembersOnSignupPassword">TransactionMembersOnSignupPassword</a></span>}>
  This hook provides transaction-specific data for the `signup-password` screen, such as active connections and current flow state.

  ```jsx Example theme={null}
  import { useTransaction } from '@auth0/auth0-acul-react/signup-password';
  function TransactionInfo() {
    const transaction = useTransaction();
  }
  ```
</ParamField>

<ParamField body="useUntrustedData" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/UntrustedDataMembers">UntrustedDataMembers</a></span>}>
  This hook handles untrusted data passed to the screen, such as a prefilled email or username from URL parameters.

  ```jsx Example theme={null}
  import { useUntrustedData } from '@auth0/auth0-acul-react/signup-password';
  function PrefilledForm() {
    const untrustedData = useUntrustedData();
  }
  ```
</ParamField>

<ParamField body="useUser" type={<span>() =&gt; <a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/UserMembers">UserMembers</a></span>}>
  This hook provides details of the active user, including `username`, `email`, and available authentication methods.

  ```jsx Example theme={null}
  import { useUser } from '@auth0/auth0-acul-react/signup-password';
  function UserProfile() {
    const user = useUser();
  }
  ```
</ParamField>

<ParamField body="useSignupPassword" type={<a href="/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/SignupPasswordMembers">SignupPasswordMembers</a>}>
  This hook returns all methods and context available on the `signup-password` screen.
</ParamField>

## Methods

<ParamField body="federatedSignup" type="Promise<void>">
  This method initiates signup via a federated identity provider, such as Google or GitHub.

  ```jsx Example theme={null}
  import { useSignupPassword } from '@auth0/auth0-acul-react/signup-password';

  function SocialButton() {
    const { federatedSignup } = useSignupPassword();
    return (
      <button onClick={() => federatedSignup({ connection: 'google-oauth2' })}>
        Sign up with Google
      </button>
    );
  }
  ```

  **Method Parameters**

  <Expandable title="Parameters">
    <ParamField body="options">
      [FederatedSignupPasswordPayloadOptions](/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/FederatedSignupPasswordPayloadOptions).
    </ParamField>

    <ParamField body="connection" type="string" required>
      The social or enterprise connection name to use (e.g. `google-oauth2`, `github`).
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="signup" type="Promise<void>">
  This method submits the user's password to complete account creation.

  ```jsx Example theme={null}
  import { useSignupPassword } from '@auth0/auth0-acul-react/signup-password';

  function SignupPasswordForm() {
    const { signup } = useSignupPassword();
    return (
      <button onClick={() => signup({ password: 'secret' })}>
        Create Account
      </button>
    );
  }
  ```

  **Method Parameters**

  <Expandable title="Parameters">
    <ParamField body="options">
      [SignupPasswordOptions](/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/SignupPasswordOptions).
    </ParamField>

    <ParamField body="password" type="string" required>
      The password for the new account.
    </ParamField>

    <ParamField body="email" type="string">
      The user's email address.
    </ParamField>

    <ParamField body="username" type="string">
      The username for the new account, if required by the connection.
    </ParamField>

    <ParamField body="phoneNumber" type="string">
      The user's phone number, if required by the connection.
    </ParamField>

    <ParamField body="captcha?" type="string">
      Captcha value required when bot detection is enabled on the tenant.
    </ParamField>

    <ParamField body="[`key`: `string`]" type="&#x22;string&#x22; | &#x22;number&#x22; | &#x22;boolean&#x22; | &#x22;undefined&#x22;">
      Additional custom fields prefixed with `ulp-` (for example, `'ulp-custom-field'`).
    </ParamField>
  </Expandable>
</ParamField>

<ParamField body="switchConnection" type="Promise<void>">
  This method switches the active connection during the signup-password step, allowing the user to authenticate via a different connection.

  ```jsx Example theme={null}
  import { useSignupPassword } from '@auth0/auth0-acul-react/signup-password';

  function SwitchConnection() {
    const { switchConnection } = useSignupPassword();
    return (
      <button onClick={() => switchConnection({ connection: 'Username-Password-Authentication' })}>
        Use a different method
      </button>
    );
  }
  ```

  **Method Parameters**

  <Expandable title="Parameters">
    <ParamField body="options">
      [SwitchConnectionOptionsSignupPassword](/docs/libraries/acul/react-sdk/API-Reference/Types/interfaces/SwitchConnectionOptionsSignupPassword).
    </ParamField>

    <ParamField body="connection" type="string" required>
      The connection name to switch to. Use 'email' or 'sms' for passwordless, or a DB connection name for password-based authentication.
    </ParamField>

    <ParamField body="[`key`: `string`]" type="&#x22;string&#x22; | &#x22;number&#x22; | &#x22;boolean&#x22; | &#x22;undefined&#x22;">
      Additional custom fields prefixed with `ulp-` (for example, `'ulp-custom-field'`).
    </ParamField>
  </Expandable>
</ParamField>

## Common/Utility Hooks

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useAuth0Themes">useAuth0Themes</a>} type="Hooks">
  This hook gets the current theme options with flattened configuration from branding context.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useChangeLanguage">useChangeLanguage</a>} type="Hooks">
  This hook returns a function for changing the display language on the current ACUL screen.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useCurrentScreen">useCurrentScreen</a>} type="Hooks">
  This hook gets the current screen context and state.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/useErrors">useErrors</a>} type="Hooks">
  This hook reads and manages server, client, and developer errors on the screen.
</ParamField>

<ParamField body={<a href="/docs/libraries/acul/react-sdk/API-Reference/Hooks/usePasswordValidation">usePasswordValidation</a>} type="Hooks">
  This hook validates the user's password against the tenant's password policy requirements.
</ParamField>
