<SignUp /> component
The <SignUp /> component renders a UI for signing up users. The functionality of the <SignUp /> component is controlled by the instance settings you specify in the Clerk Dashboard, such as sign-in and sign-up options and social connections. You can further customize your <SignUp /> component by passing additional properties at the time of rendering.
Usage with JavaScript
The following methods available on an instance of the Clerk class are used to render and control the <SignUp /> component:
The following examples assume that you have followed the quickstart in order to add Clerk to your JavaScript application.
mountSignUp()
Render the <SignUp /> component to an HTML <div> element.
function mountSignUp(node: HTMLDivElement, props?: SignUpProps): void- Name
 node- Type
 HTMLDivElement- Description
 The
<div>element used to render in the<SignUp />component
- Name
 props?- Type
 - SignUpProps
 - Description
 The properties to pass to the
<SignUp />component.
import { Clerk } from '@clerk/clerk-js'
// Initialize Clerk with your Clerk Publishable Key
const clerkPubKey = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY
const clerk = new Clerk(clerkPubKey)
await clerk.load()
document.getElementById('app').innerHTML = `
  <div id="sign-up"></div>
`
const signUpDiv = document.getElementById('sign-up')
clerk.mountSignUp(signUpDiv)unmountSignUp()
Unmount and run cleanup on an existing <SignUp /> component instance.
function unmountSignUp(node: HTMLDivElement): void- Name
 node- Type
 HTMLDivElement- Description
 The container
<div>element with a rendered<SignUp />component instance
import { Clerk } from '@clerk/clerk-js'
// Initialize Clerk with your Clerk Publishable Key
const clerkPubKey = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY
const clerk = new Clerk(clerkPubKey)
await clerk.load()
document.getElementById('app').innerHTML = `
  <div id="sign-up"></div>
`
const signUpDiv = document.getElementById('sign-up')
clerk.mountSignUp(signUpDiv)
// ...
clerk.unmountSignUp(signUpDiv)openSignUp()
Opens the <SignUp /> component as an overlay at the root of your HTML body element.
function openSignUp(props?: SignUpProps): void- Name
 props?- Type
 - SignUpProps
 - Description
 The properties to pass to the
<SignUp />component
import { Clerk } from '@clerk/clerk-js'
// Initialize Clerk with your Clerk Publishable Key
const clerkPubKey = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY
const clerk = new Clerk(clerkPubKey)
await clerk.load()
clerk.openSignUp()closeSignUp()
Closes the sign up overlay.
function closeSignUp(): voidimport { Clerk } from '@clerk/clerk-js'
// Initialize Clerk with your Clerk Publishable Key
const clerkPubKey = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY
const clerk = new Clerk(clerkPubKey)
await clerk.load()
clerk.openSignUp()
// ...
clerk.closeSignUp()Properties
All props are optional.
- Name
 appearance- Type
 Appearance | undefined- Description
 Optional object to style your components. Will only affect Clerk components and not Account Portal pages.
- Name
 fallback- Type
 ReactNode- Description
 An optional element to be rendered while the component is mounting.
- Name
 fallbackRedirectUrl- Type
 string- Description
 The fallback URL to redirect to after the user signs up, if there's no
redirect_urlin the path already. Defaults to/. It's recommended to use the environment variable instead.
- Name
 forceRedirectUrl- Type
 string- Description
 If provided, this URL will always be used as the redirect destination after the user signs up. It's recommended to use the environment variable instead.
- Name
 initialValues- Type
 SignUpInitialValues- Description
 The values used to prefill the sign-up fields with.
- Name
 oauthFlow- Type
 "redirect" | "popup" | "auto"- Description
 Determines how OAuth authentication is performed. Accepts the following properties:
"redirect": Redirect to the OAuth provider on the current page."popup": Open a popup window."auto": Choose the best method based on whether the current domain typically requires the"popup"flow to correctly perform authentication.
Defaults to
"auto".
- Name
 path- Type
 string- Description
 The path where the component is mounted on when
routingis set topath. It is ignored in hash-based routing. For example:/sign-up.
- Name
 routing- Type
 'hash' | 'path'- Description
 The routing strategy for your pages. Defaults to
'path'for frameworks that handle routing, such as Next.js and Remix. Defaults tohashfor all other SDK's, such as React.
- Name
 signInFallbackRedirectUrl- Type
 string- Description
 The fallback URL to redirect to after the user signs in, if there's no
redirect_urlin the path already. Used for the 'Already have an account? Sign in' link that's rendered. Defaults to/. It's recommended to use the environment variable instead.
- Name
 signInForceRedirectUrl?- Type
 string- Description
 If provided, this URL will always be redirected to after the user signs in. Used for the 'Already have an account? Sign in' link that's rendered. It's recommended to use the environment variable instead.
- Name
 signInUrl- Type
 string- Description
 The full URL or path to the sign-in page. Used for the 'Already have an account? Sign in' link that's rendered. It's recommended to use the environment variable instead.
- Name
 unsafeMetadata- Type
 SignUpUnsafeMetadata- Description
 Metadata that can be read and set from the frontend and the backend. Once the sign-up is complete, the value of this field will be automatically copied to the created user's unsafe metadata (
User.unsafeMetadata). One common use case is to collect custom information about the user during the sign-up process and store it in this property. Read more about unsafe metadata.
Customization
To learn about how to customize Clerk components, see the customization documentation.
If Clerk's prebuilt components don't meet your specific needs or if you require more control over the logic, you can rebuild the existing Clerk flows using the Clerk API. For more information, see the custom flow guides.
Feedback
Last updated on