<RedirectToSignUp />
Navigate immediately to the sign-up URL
Overview
Rendering a <RedirectToSignUp/>
component will navigate to the sign up URL which has been configured in your application instance. You can find the configuration on the Paths page.
The behavior will be just like a server-side (3xx) redirect, and will override the current location in the history stack.
Usage
Make sure you've followed the installation guide for Clerk React before running the snippets below.
The example below shows a page which is normally accessible by authenticated users. All other visitors (unauthenticated requests) will get redirected to the sign up page.
The <SignedIn/> and <SignedOut/> components work together as a conditional, allowing the <RedirectToSignUp/>
component to be rendered only for unauthenticated requests.
1import {2ClerkProvider,3SignedIn,4SignedOut,5RedirectToSignUp6} from "@clerk/clerk-react";78function PrivatePage() {9return (10<ClerkProvider publishableKey="clerk-pub-key">11<SignedIn>12Content that is displayed to signed in13users.14</SignedIn>15<SignedOut>16{/*17Non-authenticated visitors will be redirected18to the sign up page.19*/}20<RedirectToSignUp />21</SignedOut>22</div>23);24}
Props
Name | Type | Description |
---|---|---|
redirectUrl? | string | Full URL or path to navigate to after successful sign in or sign up. Use this instead of setting afterSignInUrl and afterSignUpUrl to the same value. To return to the same URL, set to window.location.href |
afterSignInUrl? | string | The full URL or path to navigate to after a successful sign in. Defaults to the Sign-in URL on the Paths page of your Dashboard. |
afterSignUpUrl? | string | The full URL or path to navigate to after a successful sign up. Defaults to the Sign-up URL on the Paths page of your Dashboard. |