<ForgotPassword />
Renders a forgot password component with options for full-page display.
Props
Prop | Type | Default | Description |
---|---|---|---|
fullPage optional | boolean | false | If set to 'true'. displays the component in full-page mode. |
Example
import { ForgotPassword } from '@stackframe/stack';
export const MyForgotPassword = () => {
return <ForgotPassword fullPage={true} />;
}