diff --git a/src/Pages/Auth/Login/Login.jsx b/src/Pages/Auth/Login/Login.jsx index 60aaed6ba..c13218018 100644 --- a/src/Pages/Auth/Login/Login.jsx +++ b/src/Pages/Auth/Login/Login.jsx @@ -142,7 +142,7 @@ const Login = () => { overflow="hidden" sx={{ "& h1": { - color: theme.palette.primary.main, + color: theme.palette.primary.contrastText, fontWeight: 600, fontSize: 28, }, diff --git a/src/Pages/Auth/Register/Register.jsx b/src/Pages/Auth/Register/Register.jsx index 021cda18a..e35f70b27 100644 --- a/src/Pages/Auth/Register/Register.jsx +++ b/src/Pages/Auth/Register/Register.jsx @@ -83,7 +83,7 @@ const LandingPage = ({ isSuperAdmin, onSignup }) => { }, }} > - Terms of Service + {t("authRegisterTerms")} {" "} and{" "} { }, }} > - Privacy Policy. + {t("authRegisterPrivacy")} @@ -283,7 +283,7 @@ const Register = ({ isSuperAdmin }) => { overflow="hidden" sx={{ "& h1": { - color: theme.palette.primary.main, + color: theme.palette.primary.contrastText, fontWeight: 600, fontSize: 28, }, @@ -370,7 +370,7 @@ const Register = ({ isSuperAdmin }) => { p={theme.spacing(12)} > - {t("authRegisterAlreadyHaveAccount")} - + {t("authRegisterAlreadyHaveAccount")} { onClick={() => { navigate("/login"); }} - sx={{ userSelect: "none", color: theme.palette.primary.main }} + sx={{ userSelect: "none", color: theme.palette.accent.main }} > {t("authLoginTitle")} diff --git a/src/Pages/Auth/Register/StepOne/index.jsx b/src/Pages/Auth/Register/StepOne/index.jsx index 248f57f69..e55213b8b 100644 --- a/src/Pages/Auth/Register/StepOne/index.jsx +++ b/src/Pages/Auth/Register/StepOne/index.jsx @@ -45,7 +45,7 @@ function StepOne({ form, errors, onSubmit, onChange, onBack }) { textAlign="center" > - {t("signUp")} + {t("signUP")} {t("authRegisterStepOnePersonalDetails")} diff --git a/src/Pages/Auth/Register/StepThree/index.jsx b/src/Pages/Auth/Register/StepThree/index.jsx index eb05f843a..9b5f066d7 100644 --- a/src/Pages/Auth/Register/StepThree/index.jsx +++ b/src/Pages/Auth/Register/StepThree/index.jsx @@ -39,7 +39,7 @@ function StepThree({ onSubmit, onBack }) { textAlign="center" > - {t("signUp")} + {t("signUP")} {t("createPassword")} - {t("signUp")} + {t("signUP")} {t("enterEmail")} diff --git a/src/locales/gb.json b/src/locales/gb.json index 60d0899cb..eeb20a5d7 100644 --- a/src/locales/gb.json +++ b/src/locales/gb.json @@ -38,6 +38,8 @@ "commonAppName": "Checkmate", "authLoginEnterEmail": "Enter your email", "authRegisterTitle": "Create an account", + "authRegisterTerms": "Terms of Service", + "authRegisterPrivacy": "Privacy Policy.", "authRegisterStepOneTitle": "Create your account", "authRegisterStepOnePersonalDetails": "Enter your personal details", "authRegisterStepOneDescription": "Enter your details to get started",