<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}
    />
  );
}

Table of Contents

Navigate this page

On this page

Stack Auth AI

Documentation assistant

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.

<PasswordReset />