Stack Auth
GuidesSDKComponents
API Reference
Components Overview
Authentication
<SignIn /><SignUp /><CredentialSignIn /><CredentialSignUp /><MagicLinkSignIn /><ForgotPassword /><PasswordReset />
OAuth
<OAuthButton /><OAuthButtonGroup />
User Interface
<UserButton /><AccountSettings /><SelectedTeamSwitcher />
Layout & Providers
<StackProvider /><StackHandler /><StackTheme />
Stack Auth Docs

<PasswordReset />

Renders a password reset component based on the provided search parameters and optional full page display.

Props

PropTypeDefaultDescription
searchParams
Record<string, string>—An object containing search parameters, including the password reset code.
fullPageoptional
booleanfalseDetermines whether to display the component in full page mode.

Example

app/reset-password.tsx
import { PasswordReset } from '@stackframe/stack';

export function ResetPasswordPage(props: { searchParams: Record<string, string> }) {
  return (
    <PasswordReset
      searchParams={props.searchParams}
      fullPage={true}
    />
  );
}
Previous Page<ForgotPassword />
Next Page<OAuthButton />

On this page

PropsExample

Stack Auth AI

Experimental: AI responses may not always be accurate—please verify important details.

For the most accurate information, please join our Discord or email us.

How can I help?

Ask me about Stack Auth while you browse the docs.