Files
diplomarbeitsportal/src/app/(frontend)/login/page.tsx
2025-03-26 12:51:29 +01:00

15 lines
257 B
TypeScript

import { signIn } from "@/auth";
export default function SignInButton() {
return (
<form
action={async () => {
"use server";
await signIn("github");
}}
>
<button type="submit">Sign In</button>
</form>
);
}