Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 500 Bytes

File metadata and controls

29 lines (23 loc) · 500 Bytes
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

import { ForgotPassword } from '@stackframe/stack';

export const MyForgotPassword = () => {
  return <ForgotPassword fullPage={true} />;
}