import { signIn } from "@/lib/auth"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Button } from "@/components/ui/button"; import { GithubSignIn } from "@/components/github-sign-in"; export function SignInForm() { return (

Sign in to your account

Enter your email below to sign in to your account

{ "use server"; await signIn("credentials", formData); }} >
Or
Don't have an account?{" "} Sign up
) }