> ## Documentation Index
> Fetch the complete documentation index at: https://docs.renchi.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# PasswordChangeDialog

> * PasswordChangeDialog - Force password change for invited users * Shown on first login when password_reset_required is true. The dialog cannot be dismissed without changing the password.

* PasswordChangeDialog - Force password change for invited users \* Shown on first login when password\_reset\_required is true. The dialog cannot be dismissed without changing the password.

## Props

<ResponseField name="open" type="boolean" required={true}>
  open
</ResponseField>

<ResponseField name="onOpenChange" type="(open: boolean) => void" required={true}>
  onOpenChange
</ResponseField>

<ResponseField name="onPasswordChanged" type="() => void" required={false}>
  onPasswordChanged
</ResponseField>

## Usage

```tsx theme={null}
import { PasswordChangeDialog } from '@/components/PasswordChangeDialog';

export default function Example() {
  return (
    <PasswordChangeDialog open={open} onOpenChange={onOpenChange} />
  );
}
```
