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 (
Garage Logo
Sign in to Garage UI Authenticate using your {providerName} account

You will be redirected to {providerName} to complete the sign-in process

); }