diff --git a/src/client/pages/SignIn.tsx b/src/client/pages/SignIn.tsx index 18b9e2837..9b050e886 100644 --- a/src/client/pages/SignIn.tsx +++ b/src/client/pages/SignIn.tsx @@ -56,12 +56,30 @@ const Links = ({ children }: { children: React.ReactNode }) => ( ); -const getErrorContext = (error: string | undefined) => { +const getErrorContext = ( + error: string | undefined, + queryParams: QueryParams, +) => { if (error === SignInErrors.ACCOUNT_ALREADY_EXISTS) { return ( <> - We cannot sign you in with your social account credentials. Please enter - your account password below to sign in. +
+ We cannot sign you in with your social account credentials. Please + enter your account password below to sign in. If you do not know your + password, you can{' '} + + reset it here + + . +
+
+
+ If you are still having trouble, please contact our customer service + team at{' '} + {SUPPORT_EMAIL}. +
); } else if (error === RegistrationErrors.PROVISIONING_FAILURE) { @@ -129,7 +147,7 @@ export const SignIn = ({ return (