package components import "context" type TwoFactorVerifyData struct { ErrorMessage string } templ TwoFactorVerify(ctx context.Context, data TwoFactorVerifyData) { @LayoutWithContext("Two-Factor Authentication", ctx) {

Two-Factor Authentication

Enter the verification code from your authenticator app to continue

if data.ErrorMessage != "" { }

Authentication Verification

Secure your account with 2FA

Lost your device? You can use one of your backup codes instead of the 6-digit code. Backup codes were provided when you set up 2FA.

Security Information

Two-factor authentication adds an extra layer of security to your account. After entering your password, you'll need to provide a code from your authenticator app to verify your identity.

} }