From 5a00d17bd794ebfc11710a7f1831ba889658617d Mon Sep 17 00:00:00 2001 From: Harshit Date: Thu, 23 Oct 2025 21:12:30 +0530 Subject: [PATCH] fix: sign up button --- src/app/signup/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/signup/page.tsx b/src/app/signup/page.tsx index 5eb6d95..0989d4b 100644 --- a/src/app/signup/page.tsx +++ b/src/app/signup/page.tsx @@ -35,7 +35,7 @@ export default function SignupPage() { const [buttonDisabled, setButtonDisabled] = useState(true); useEffect(() => { - if (fullname && regno && email) { + if (fullname && email) { setButtonDisabled(false); } else { setButtonDisabled(true); @@ -114,7 +114,7 @@ export default function SignupPage() { /> -
+ {/*
@@ -126,7 +126,7 @@ export default function SignupPage() { className="h-[60px] w-[100%] bg-[#D3D5D7] border border-black/20 rounded-lg text-black mb-2" required /> -
+
*/}