Fix: Login/Register UI Screens

This commit is contained in:
Aryaman Kumar Sharma
2025-03-11 13:01:24 +05:30
parent 7c369e8405
commit 64d90894dc
6 changed files with 11 additions and 9 deletions

View File

@@ -142,7 +142,7 @@ const Login = () => {
overflow="hidden"
sx={{
"& h1": {
color: theme.palette.primary.main,
color: theme.palette.primary.contrastText,
fontWeight: 600,
fontSize: 28,
},

View File

@@ -83,7 +83,7 @@ const LandingPage = ({ isSuperAdmin, onSignup }) => {
},
}}
>
Terms of Service
{t("authRegisterTerms")}
</Typography>{" "}
and{" "}
<Typography
@@ -101,7 +101,7 @@ const LandingPage = ({ isSuperAdmin, onSignup }) => {
},
}}
>
Privacy Policy.
{t("authRegisterPrivacy")}
</Typography>
</Typography>
</Box>
@@ -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)}
>
<Typography display="inline-block">
{t("authRegisterAlreadyHaveAccount")} -
{t("authRegisterAlreadyHaveAccount")}
</Typography>
<Typography
component="span"
@@ -378,7 +378,7 @@ const Register = ({ isSuperAdmin }) => {
onClick={() => {
navigate("/login");
}}
sx={{ userSelect: "none", color: theme.palette.primary.main }}
sx={{ userSelect: "none", color: theme.palette.accent.main }}
>
{t("authLoginTitle")}
</Typography>

View File

@@ -45,7 +45,7 @@ function StepOne({ form, errors, onSubmit, onChange, onBack }) {
textAlign="center"
>
<Box>
<Typography component="h1">{t("signUp")}</Typography>
<Typography component="h1">{t("signUP")}</Typography>
<Typography>{t("authRegisterStepOnePersonalDetails")}</Typography>
</Box>

View File

@@ -39,7 +39,7 @@ function StepThree({ onSubmit, onBack }) {
textAlign="center"
>
<Box>
<Typography component="h1">{t("signUp")}</Typography>
<Typography component="h1">{t("signUP")}</Typography>
<Typography>{t("createPassword")}</Typography>
</Box>
<Box

View File

@@ -43,7 +43,7 @@ function StepTwo({ form, errors, onSubmit, onChange, onBack }) {
textAlign="center"
>
<Box>
<Typography component="h1">{t("signUp")}</Typography>
<Typography component="h1">{t("signUP")}</Typography>
<Typography>{t("enterEmail")}</Typography>
</Box>

View File

@@ -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",