podcast-generator/client/src/routes/Login.tsx
2025-07-24 17:54:24 +01:00

14 lines
388 B
TypeScript

import { login } from "../auth"
const Login = () => {
return (
<main class="flex items-center justify-center h-full">
<div class="w-100 max-w-100 bg-base-100 shadow-sm p-8 rounded-md">
<h1 class="text-2xl mb-2">Login</h1>
<button class="btn btn-primary w-full" onClick={login}>Sign in with OIDC</button>
</div>
</main>
);
}
export default Login;