feat: add two-factor authentication support and related configurations

This commit is contained in:
2026-07-24 12:59:10 +02:00
parent 54345e621c
commit 235d5f646c
27 changed files with 2608 additions and 374 deletions

View File

@@ -3,6 +3,8 @@ export interface AuthFeatures {
password_reset: boolean
remember_me: boolean
email_verification: boolean
two_factor: boolean
two_factor_required: boolean
}
export interface AuthPageConfig {

View File

@@ -3,4 +3,5 @@ export interface Flash {
error: string | null
message: string | null
status: string | null
recoveryCodes: string[] | null
}