Skip to Content
Clerk logo

Clerk Docs

Ctrl + K
Go to clerkstage.dev

<SignIn /> component

Sign in component example

The <SignIn /> component renders a UI for signing in users. The functionality of the <SignIn /> component are controlled by the instance settings you specify in your Clerk Dashboard(opens in a new tab), such as sign-up options and social connections. You can further customize your <SignIn /> component by passing additional properties at the time of rendering.

The following methods available on an instance of the Clerk class are used to render and control the <SignIn /> component:

mountSignIn()

Render the <SignIn /> component to an HTML <div> element.

function mountSignIn(node: HTMLDivElement, props?: SignInProps): void;

mountSignIn() params

NameTypeDescription
nodeHTMLDivElement(opens in a new tab)The container <div> element used to render in the <SignIn /> component
props?SignInPropsThe properties to pass to the <SignIn /> component

mountSignIn() usage

In the example below, the <SignIn /> component is rendered to a <div> element with id="sign-in". The <SignIn /> component will be rendered with the default settings specified in your Clerk Dashboard(opens in a new tab).

index.js
import Clerk from '@clerk/clerk-js'; // Initialize Clerk with your Clerk publishable key const clerk = new Clerk('{{pub_key}}'); await clerk.load(); document.getElementById("app").innerHTML = ` <div id="sign-in"></div> `; const signInDiv = document.getElementById("sign-in"); clerk.mountSignIn(signInDiv);
index.html
<!-- Add a <div id="sign-in"> element to your HTML --> <div id="sign-in"></div> <script> window.addEventListener("load", async function () { await Clerk.load(); const signInDiv = document.getElementById('sign-in'); Clerk.mountSignIn(signInDiv); }); </script>

unmountSignIn()

Unmount and run cleanup on an existing <SignIn /> component instance.

function unmountSignIn(node: HTMLDivElement): void;

unmountSignIn() params

NameTypeDescription
nodeHTMLDivElement(opens in a new tab)The container <div> element with a rendered <SignIn /> component instance

unmountSignIn() usage

index.js
import Clerk from '@clerk/clerk-js'; // Initialize Clerk with your Clerk publishable key const clerk = new Clerk('{{pub_key}}'); await clerk.load(); document.getElementById('app').innerHTML = ` <div id="sign-in"></div> ` const signInDiv = document.getElementById('sign-in'); clerk.mountSignIn(signInDiv); // ... clerk.unmountSignIn(signInDiv);
index.html
<!-- Add a <div id="sign-in"> element to your HTML --> <div id="sign-in"></div> <script> window.addEventListener("load", async function () { await Clerk.load(); const signInDiv = document.getElementById('sign-in'); Clerk.mountSignIn(signInDiv); // ... Clerk.unmountSignIn(signInDiv); }); </script>

openSignIn()

Opens the <SignIn /> component as an overlay at the root of your HTML body element.

function openSignIn(props?: SignInProps): void;

openSignIn() params

NameTypeDesciption
props?SignInPropsThe properties to pass to the <SignIn /> component

SignInProps

The type of the props parameter in the openSignIn() method is defined as follows:

NameTypeDescription
routing'hash' | 'path' | 'virtual'The routing strategy for your pages. Defaults to 'path'.
pathstringThe path where the component is mounted on when path-based routing is used.
For example, /sign-in
This prop is ignored in hash- and virtual-based routing.
redirectUrlstringFull URL or path to navigate after successful sign in or sign up.
The same as setting afterSignInUrl and afterSignUpUrl to the same value.
afterSignInUrlstringThe full URL or path to navigate after a successful sign in. Defaults to /.
signUpUrlstringFull URL or path to the sign up page. Use this property to provide the target of the 'Sign Up' link that's rendered.
afterSignUpUrlstringThe full URL or path to navigate after a successful sign up. Defaults to /.
initialValuesSignInInitialValuesThe values used to prefill the sign-in fields with.

openSignIn() usage

index.js
import Clerk from '@clerk/clerk-js'; // Initialize Clerk with your Clerk publishable key const clerk = new Clerk('{{pub_key}}'); await clerk.load(); clerk.openSignIn();
index.html
<script> window.addEventListener("load", async function () { await Clerk.load(); Clerk.openSignIn(); }); </script>

closeSignIn()

Closes the sign in overlay.

function closeSignIn(): void;

closeSignIn() usage

index.js
import Clerk from '@clerk/clerk-js'; // Initialize Clerk with your Clerk publishable key const clerk = new Clerk('{{pub_key}}'); await clerk.load(); clerk.openSignIn(); // ... clerk.closeSignIn();
index.html
<script> window.addEventListener("load", async function () { await Clerk.load(); Clerk.openSignIn(); // ... Clerk.closeSignIn(); }); </script>

What did you think of this content?

Clerk © 2024