mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
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>
30 lines
500 B
Plaintext
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} />;
|
|
}
|
|
```
|