import { cn } from "@/lib/utils"; import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Input } from "@/components/ui/input"; import { Label } from "@/components/ui/label"; import { SubmitButton } from "../submit-button"; import { signInAction } from "@/actions/auth/sign-in"; export function LoginForm({ className, ...props }: React.ComponentPropsWithoutRef<"div">) { return (
Welcome back Login with your Apple or Google account
{/*
*/}
{/* Or continue with */}
{/* */} Login
Don't have an account?{" "} Contact Us
By clicking continue, you agree to our Terms of Service{" "} and Privacy Policy.
); }