diff --git a/app/signin/page.tsx b/app/signin/page.tsx index 6f38081..05d851a 100644 --- a/app/signin/page.tsx +++ b/app/signin/page.tsx @@ -1,75 +1,90 @@ -'use client' +"use client"; -import { useState } from 'react' -import { Button } from "@/components/ui/button" -import { Input } from "@/components/ui/input" -import { Label } from "@/components/ui/label" -import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card" -import { FaGoogle } from 'react-icons/fa' +import { useState } from "react"; +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from "@/components/ui/card"; +import { FaGoogle } from "react-icons/fa"; export default function SignInPage() { - const [email, setEmail] = useState('') - const [password, setPassword] = useState('') + const [email, setEmail] = useState(""); + const [password, setPassword] = useState(""); const handleSubmit = (e: React.FormEvent) => { - e.preventDefault() + e.preventDefault(); // Handle sign-in logic here - console.log('Sign in attempted with:', email, password) - } + console.log("Sign in attempted with:", email, password); + }; return ( -
- +
+ Sign In - Enter your credentials to access your account + + Enter your credentials to access your account + -
-
- - +
+ + setEmail(e.target.value)} - required + required />
-
- - + + setPassword(e.target.value)} - required + required />
- + - -
-
- + +
+
+
-
- Or continue with +
+ + Or continue with +
-
- - - +
- ) + ); } -