aboutsummaryrefslogtreecommitdiff
path: root/web/src/app/components/sign-in.jsx
blob: bb891c7a7de6e347e99d930700ad42c980e64bdc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { signIn } from "@/lib/auth"

export default function SignIn() {
    return (
        <form
            action={async () => {
                "use server"
                await signIn("discord")
            }}
        >
            <button type="submit">Login with Discord</button>
        </form>
    )
}