Skip to main content

Two Factor Email Authenticator Status

This section describes the BfmTwoFactorEmailAuthenticatorStatusComponent component.

Usage

You need to import it in your module and use it in your template.

two-factor-email-authenticator-status.component.ts
import { BfmTwoFactorEmailAuthenticatorStatusComponent } from '@celerofinancas/ui-user-kit';

@Component({
standalone: true,
selector: 'two-factor-email-authenticator-status',
imports: [BfmTwoFactorEmailAuthenticatorStatusComponent],
templateUrl: './two-factor-email-authenticator-status.component.html',
})
export class CustomTwoFactorEmailAuthenticatorStatusComponent {}

Then, in your template, you can use the component like this:

two-factor-email-authenticator-status.component.html
<bfm-two-factor-email-authenticator-status 
[activeSince]="'2023-01-01'"
[email]="'user@example.com'"
[status]="'active'"
/>

Inputs

The BfmTwoFactorEmailAuthenticatorStatusComponent component has the following inputs:

activeSince

2FA active since

TypeDefault
string''

email

2FA email

TypeDefault
string''

status

2FA status

TypeDefault
TwoFactorStatus''

Events

The BfmTwoFactorEmailAuthenticatorStatusComponent component has no events.