import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { Github, Lock } from "lucide-react"; import Link from "next/link"; import { SubmitButton } from "../submit-button"; import { signInAction } from "@/actions/auth/sign-in"; export function LoginForm2({ className, ...props }: React.ComponentPropsWithoutRef<"form">) { return (

Welcome back

Sign in to your account

{/* */}
or
{/* */} {/* Forgot Email? */}
{/* */}
Sign In
Don't have an account? Contact Us

By continuing, you agree to Sigap's{" "} Terms of Service {" "} and{" "} Privacy Policy , and to receive periodic emails with updates.

); }