User Management Two Fa Authenticator
This section describes the BfmUserManagementTwoFaAuthenticatorComponent component.
Composition
The BfmUserManagementTwoFaAuthenticatorComponent is composed of the following components:
- BfmTwoFactorAuthenticatorComponent - Component for managing two-factor authentication.
Usage
You need to import it in your module and use it in your template.
user-management-two-fa-authenticator.component.ts
import { BfmUserManagementTwoFaAuthenticatorComponent } from '@celerofinancas/ui-user-kit';
@Component({
standalone: true,
selector: 'user-management-two-fa-authenticator',
imports: [BfmUserManagementTwoFaAuthenticatorComponent],
templateUrl: './user-management-two-fa-authenticator.component.html',
})
export class CustomUserManagementTwoFaAuthenticatorComponent {}
Then, in your template, you can use the component like this:
user-management-two-fa-authenticator.component.html
<bfm-user-management-two-fa-authenticator
[headerTitle]="'Autenticação de dois fatores (2FA)'"
/>
Inputs
The BfmUserManagementTwoFaAuthenticatorComponent component has the following inputs:
headerTitle
Header title
| Type | Default |
|---|---|
string | 'Autenticação de dois fatores (2FA)' |
Events
The BfmUserManagementTwoFaAuthenticatorComponent component has no events.