diff --git a/src/pages/ForgotPassword.tsx b/src/pages/ForgotPassword.tsx index 51aabfe..85b5f11 100644 --- a/src/pages/ForgotPassword.tsx +++ b/src/pages/ForgotPassword.tsx @@ -11,7 +11,7 @@ import { useNavigate } from "react-router-dom"; import { useForgotPasswordLink } from "apiQueries/useForgotPasswordLink"; import { ORG_NAME_INFO_TEXT } from "constants/settings"; -import { RECAPTCHA_SITE_KEY } from "constants/envVariables"; +import { RECAPTCHA_SITE_KEY, SINGLE_TENANT_MODE } from "constants/envVariables"; import { ErrorWithExtras } from "components/ErrorWithExtras"; import { InfoTooltip } from "components/InfoTooltip"; import { getSdpTenantName } from "helpers/getSdpTenantName"; @@ -96,6 +96,7 @@ export const ForgotPassword = () => { onChange={(e) => setOrganizationName(e.target.value)} value={organizationName} type="text" + disabled={SINGLE_TENANT_MODE} /> { a combination of uppercase letters, lowercase letters and numbers -
  • at least one symbol from: ! @ # $ % ^ & *
  • +
  • + at least one symbol from:{" "} + ! @ # $ % ^ & * +
  • @@ -120,6 +124,7 @@ export const ResetPassword = () => { onChange={(e) => setOrganizationName(e.target.value)} value={organizationName} type="text" + disabled={SINGLE_TENANT_MODE} />