chore: seminarhof customer project

This commit is contained in:
e2e
2026-06-22 09:44:35 +02:00
commit c3035e16ec
161 changed files with 18517 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'
},
}