chore: seminarhof customer project

This commit is contained in:
e2e
2026-07-10 23:06:04 +02:00
commit 56df359d57
188 changed files with 20779 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { Fingerprint } from 'lucide-react'
import type { AuthProvider } from './_types'
export const passwordless: AuthProvider = {
id: 'passwordless',
labelKey: 'auth:providers.passwordless',
Icon: Fingerprint,
tone: 'default',
envVars: ['SMTP_HOST', 'SMTP_USER', 'SMTP_PASS'],
login: () => {
window.location.href = '/auth/passwordless/request'
},
}