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: `
`, styles: ``, }) export class TwoFactor { protected readonly appName = appName protected readonly currentYear = currentYear protected readonly credits = credits }