This commit is contained in:
2024-11-27 07:48:16 +05:00
parent 7389de4c76
commit 7fadcd561f
17 changed files with 454 additions and 189 deletions

View File

@ -5,7 +5,6 @@ import { Button } from "@/components/ui/button";
import { signin } from "@/actions/auth-actions";
import { Loader } from "lucide-react";
import Link from "next/link";
import { useActionState } from "react";
import { PhoneInput } from "../ui/phone-input";
@ -17,8 +16,7 @@ export default function LoginForm() {
return (
<form className="bg-white overflow-clip dark:bg-transparent dark:border-2 w-full max-w-xs mx-auto rounded-lg shadow mt-4" action={formAction}>
<h4 className="text-center rounded m-2 text-xl font-bold dark:text-white text-gray-600 dark:bg-gray-900 bg-gray-200 py-4">Login</h4>
<div className="py-2 px-10">
<div className="py-6 px-10">
<div className="grid gap-4">
<PhoneInput
id="phone-number"
@ -35,12 +33,12 @@ export default function LoginForm() {
{isPending ? <Loader className="animate-spin" /> : "Request OTP"}
</Button>
</div>
<div className="my-4 text-center text-sm">
{/* <div className="mt-2 text-center text-sm">
Don&apos;t have an account?{" "}
<Link href="signup" className="underline">
Sign up
</Link>
</div>
</div> */}
</div>
</form>
);