import { Component } from '@angular/core' import { AppLogo } from '@app/components/app-logo' import { NgOtpInputComponent } from 'ng-otp-input' import { RouterLink } from '@angular/router' import { appName, credits, currentYear } from '@/app/constants' @Component({ selector: 'app-two-factor', imports: [AppLogo, NgOtpInputComponent, RouterLink], template: `

We've emailed you a 6-digit verification code we sent to

+ (12) ******6789

Don’t have a code? Resend or Call Us

Return to Sign in

© {{ currentYear }} {{ appName }}. Tous droits réservés. — Développé par {{ credits.name }}

`, styles: ``, }) export class TwoFactor { protected readonly appName = appName protected readonly currentYear = currentYear protected readonly credits = credits }