diff --git a/app/login/page.tsx b/app/login/page.tsx index db10df9..94bcef2 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -1,8 +1,9 @@ "use client"; import React, { useState } from 'react'; +import { useRouter } from "next/navigation"; import { signIn } from "next-auth/react"; -// --- Custom Icon Components (No installation needed!) --- +// Icons const FlaskIcon = ({ size = 24, className = "" }) => ( @@ -29,6 +30,7 @@ const EyeIcon = ({ className = "" }) => ( // -------------------------------------------------------- export default function SignInPage() { + const router = useRouter(); const [showPassword, setShowPassword] = useState(false); return ( @@ -123,6 +125,7 @@ export default function SignInPage() {

Don't have an account?

+ +
+

Already have an account?

+ +
+ + + {/* Footer Links */} +
+ By creating an account, you agree to our{' '} + + Terms of Service + {' '} + and{' '} + + Privacy Policy + +
+ + + ); +}