mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2026-01-24 19:01:01 -06:00
Fix: Login/Register UI Screens
This commit is contained in:
@@ -142,7 +142,7 @@ const Login = () => {
|
||||
overflow="hidden"
|
||||
sx={{
|
||||
"& h1": {
|
||||
color: theme.palette.primary.main,
|
||||
color: theme.palette.primary.contrastText,
|
||||
fontWeight: 600,
|
||||
fontSize: 28,
|
||||
},
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user