| title | <ForgotPassword /> |
|---|
Renders a forgot password component with options for full-page display.
<PropTable props={[ { name: "fullPage", type: "boolean", description: "If set to 'true'. displays the component in full-page mode.", optional: true, default: "false" } ]} />
import { ForgotPassword } from '@stackframe/stack';
export const MyForgotPassword = () => {
return <ForgotPassword fullPage={true} />;
}