M4-T08: add two-step login and TOTP settings panel (qrcode.react)

This commit is contained in:
2026-06-21 22:42:41 +02:00
parent 51da8c5716
commit ee1264b66b
10 changed files with 1405 additions and 51 deletions
+6
View File
@@ -35,6 +35,7 @@ import {
} from '@mantine/core'
import apiClient, { ApiError } from '../api/client'
import type { components } from '../api/schema.d.ts'
import { TotpSettings } from './TotpSettings'
// ---------------------------------------------------------------------------
// Types
@@ -393,6 +394,11 @@ export function ConfigPage() {
</Text>
</Stack>
)}
{/* TOTP two-factor auth management */}
<Stack mt="xl">
<TotpSettings />
</Stack>
</Container>
)
}