User Management Password Change Management
This section describes the UserManagementPasswordChangeManagementComponent component.
Composition
The UserManagementPasswordChangeManagementComponent is composed of the following components:
- BfmUserPasswordChangeComponent - Component for managing user password changes.
Usage
You need to import it in your module and use it in your template.
user-management-password-change-management.component.ts
import { UserManagementPasswordChangeManagementComponent } from '@celerofinancas/ui-user-kit';
@Component({
standalone: true,
selector: 'user-management-password-change-management',
imports: [UserManagementPasswordChangeManagementComponent],
templateUrl: './user-management-password-change-management.component.html',
})
export class CustomUserManagementPasswordChangeManagementComponent {}
Then, in your template, you can use the component like this:
user-management-password-change-management.component.html
<bfm-user-management-password-change-management
[headerTitle]="'Senha da conta'"
/>
Inputs
The UserManagementPasswordChangeManagementComponent component has the following inputs:
headerTitle
Header title
| Type | Default |
|---|---|
string | 'Senha da conta' |
Events
The UserManagementPasswordChangeManagementComponent component has no events.