Merge pull request #1905 from Br0wnHammer/fix/fe/login-register-ui

Fix: Login/Register UI Screens
This commit is contained in:
Alexander Holliday
2025-03-13 07:09:37 -07:00
committed by GitHub
3 changed files with 12 additions and 10 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

@ -35,7 +35,7 @@ const LandingPage = ({ isSuperAdmin, onSignup }) => {
textAlign="center"
>
<Box>
<Typography component="h1">{t("signUP")}</Typography>
<Typography component="h1">{t("signUp")}</Typography>
<Typography>
{isSuperAdmin
? t("authRegisterCreateSuperAdminAccount")
@ -83,9 +83,9 @@ const LandingPage = ({ isSuperAdmin, onSignup }) => {
},
}}
>
Terms of Service
{t("authRegisterTerms")}
</Typography>{" "}
and{" "}
{t("and")}{" "}
<Typography
component="span"
onClick={() => {
@ -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

@ -1,5 +1,6 @@
{
"dontHaveAccount": "Don't have account",
"and": "and",
"https": "HTTPS",
"http": "HTTP",
"add": "Add",
@ -9,8 +10,7 @@
"email": "E-mail",
"forgotPassword": "Forgot Password",
"password": "password",
"signUp": "Sign up",
"signUP": "Sign Up",
"signUp": "Sign Up",
"submit": "Submit",
"title": "Title",
"continue": "Continue",
@ -40,6 +40,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",