stack/docs/templates/components/forgot-password.mdx
Madison 4e467c4026
New docs (#698)
Co-authored-by: Konsti Wohlwend <n2d4xc@gmail.com>
Co-authored-by: Madison Kennedy <madison@Madisons-MacBook-Pro.local>
Co-authored-by: BilalG1 <bg2002@gmail.com>
2025-06-20 13:30:01 -07:00

30 lines
500 B
Plaintext

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