Forgot Password
Create a custom forgot password flow for your users.
When using Clerk's Prebuilt Components options are included to help users who have forgotten a password.
If these options will not work for you, or if you want more control of your user's experience, it's possible to create a completely custom Forgot Password flow using lower-level methods.
Example
1import React, { SyntheticEvent, useState } from 'react';2import { useSignIn } from '@clerk/nextjs';3import type { NextPage } from 'next';45const SignInPage: NextPage = () => {6const [email, setEmail] = useState('');7const [password, setPassword] = useState('');8const [code, setCode] = useState('');9const [successfulCreation, setSuccessfulCreation] = useState(false);10const [complete, setComplete] = useState(false);11const [secondFactor, setSecondFactor] = useState(false);1213const { isLoaded, signIn, setActive } = useSignIn();1415if (!isLoaded) {16return null;17}1819async function create(e: SyntheticEvent) {20e.preventDefault();21await signIn22?.create({23strategy: 'reset_password_email_code',24identifier: email,25})26.then(_ => {27setSuccessfulCreation(true);28})29.catch(err => console.error('error', err.errors[0].longMessage));30}3132async function reset(e: SyntheticEvent) {33e.preventDefault();34await signIn35?.attemptFirstFactor({36strategy: 'reset_password_email_code',37code,38password,39})40.then(result => {41if (result.status === 'needs_second_factor') {42setSecondFactor(true);43} else if (result.status === 'complete') {44setActive({ session: result.createdSessionId });45setComplete(true);46} else {47console.log(result);48}49})50.catch(err => console.error('error', err.errors[0].longMessage));51}5253return (54<div55style={{56margin: 'auto',57maxWidth: '500px',58}}59>60<h1>Forgot Password ?</h1>61<form62style={{63display: 'flex',64flexDirection: 'column',65gap: '1em',66}}67onSubmit={!successfulCreation ? create : reset}68>69{!successfulCreation && !complete && (70<>71<label htmlFor='email'>Please provide identifier</label>72<input73type='email'74placeholder='e.g john@doe.com'75value={email}76onChange={e => setEmail(e.target.value)}77/>7879<button>Sign in</button>80</>81)}8283{successfulCreation && !complete && (84<>85<label htmlFor='password'>New password</label>86<input87type='password'88value={password}89onChange={e => setPassword(e.target.value)}90/>9192<label htmlFor='password'>Reset password code</label>93<input94type='text'95value={code}96onChange={e => setCode(e.target.value)}97/>9899<button>Reset</button>100</>101)}102103{complete && 'You successfully changed you password'}104{secondFactor && '2FA is required, this UI does not handle that'}105</form>106</div>107);108};109110export default SignInPage;