import { useAuthStore } from '@/store/auth-store'; import { Button } from '@/components/ui/button'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { LogIn } from 'lucide-react'; export function OIDCLoginView() { const { config, loginOIDC } = useAuthStore(); const providerName = config?.oidc.provider || 'OIDC Provider'; return (
You will be redirected to {providerName} to complete the sign-in process