|
|
@ -55,7 +55,7 @@ export default function LoginPage() { |
|
|
|
}) |
|
|
|
); |
|
|
|
dispatch(setUserDetails(response)); |
|
|
|
setLoader(false) |
|
|
|
setLoader(false); |
|
|
|
router.push(routes.PRODUCTS); |
|
|
|
} catch (err) { |
|
|
|
setLoader(false); |
|
|
@ -99,8 +99,12 @@ export default function LoginPage() { |
|
|
|
> |
|
|
|
<img src={UTILITY_CONSTANT.IMAGES.AUTH.HEADER_LOG} alt="logo" /> |
|
|
|
<form onSubmit={handleSubmit(onSubmit)} style={{ width: "100%" }}> |
|
|
|
<Typography variant="h4">Welcome to Convexsol</Typography> |
|
|
|
<Typography variant="h4">Sign in to your account</Typography> |
|
|
|
<Typography variant="h4" color={"var(--primary_text_clr)"}> |
|
|
|
Welcome to Convexsol |
|
|
|
</Typography> |
|
|
|
<Typography variant="h4" color={"var(--primary_text_clr)"}> |
|
|
|
Sign in to your account |
|
|
|
</Typography> |
|
|
|
<Box |
|
|
|
width={"100%"} |
|
|
|
marginBlockStart={"40px"} |
|
|
@ -140,12 +144,17 @@ export default function LoginPage() { |
|
|
|
flexWrap={"wrap"} |
|
|
|
gap={2} |
|
|
|
> |
|
|
|
<Typography variant="caption"> |
|
|
|
<Typography variant="caption" color={"var(--primary_text_clr)"}> |
|
|
|
© 2024 ConvexSol. Pvt.Ltd. All rights reserved. |
|
|
|
</Typography> |
|
|
|
<Typography variant="caption"> |
|
|
|
<Link href={"#"}>Privacy Policy</Link> |{" "} |
|
|
|
<Link href={"#"}>Terms of Use</Link> |
|
|
|
<Link href={"#"} color={"var(--primary_text_clr)"}> |
|
|
|
Privacy Policy |
|
|
|
</Link>{" "} |
|
|
|
|{" "} |
|
|
|
<Link href={"#"} color={"var(--primary_text_clr)"}> |
|
|
|
Terms of Use |
|
|
|
</Link> |
|
|
|
</Typography> |
|
|
|
</Box> |
|
|
|
</Box> |
|
|
|