From 7bbc0b3c5ea9e6fcbca3ed4790c7fd4d58694e7b Mon Sep 17 00:00:00 2001 From: Pratham Yadav Date: Wed, 9 Sep 2026 16:30:40 +0530 Subject: [PATCH 1/3] fix: add visible borders in high contrast sign-in --- frontend/src/Pages/Authentication.tsx | 2 +- frontend/src/Pages/Authentication/forms.tsx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/frontend/src/Pages/Authentication.tsx b/frontend/src/Pages/Authentication.tsx index eb117cfa..ab924e39 100644 --- a/frontend/src/Pages/Authentication.tsx +++ b/frontend/src/Pages/Authentication.tsx @@ -63,7 +63,7 @@ const RightSection: React.FC = ({ {authMode !== 'otpVerification' && authMode !== 'resetPassword' && (
From 74828fb952ca572e5629e50b0e1e99a3cb7790d1 Mon Sep 17 00:00:00 2001 From: Pratham Yadav Date: Thu, 10 Sep 2026 22:44:45 +0530 Subject: [PATCH 2/3] fix: address maintainer feedback for sign-in and sign-up in high contrast theme --- frontend/src/Pages/Authentication/forms.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/frontend/src/Pages/Authentication/forms.tsx b/frontend/src/Pages/Authentication/forms.tsx index 68bc57d0..1f1a63fe 100644 --- a/frontend/src/Pages/Authentication/forms.tsx +++ b/frontend/src/Pages/Authentication/forms.tsx @@ -106,7 +106,7 @@ const handleGoogleLogin = useCallback(
show password
{error &&

{error}

} -

+

Forgot your password?{' '} Reset Password @@ -191,21 +191,21 @@ export const SignUpForm: React.FC = ({ startOtpVerification }) placeholder="name@example.com" value={email} onChange={(e) => setEmail(e.target.value)} - className="mb-2 dark:border-white" + className="mb-2 border-border dark:border-white" /> setPassword(e.target.value)} - className="mb-2 dark:border-white" + className="mb-2 border-border dark:border-white" /> setConfirmPassword(e.target.value)} - className="mb-4 dark:border-white" + className="mb-4 border-border dark:border-white" />

@@ -313,7 +313,7 @@ export const ForgotPasswordForm: React.FC = ({ value={email} onChange={(e) => setEmail(e.target.value)} placeholder="name@example.com" - className="w-full mb-4 dark:border-white" + className="w-full mb-4 border-border dark:border-white" /> {error &&

{error}

}
-