added docker comment, shortened the url of the auth, fixed sidebar toggle issue #3

Merged
ameye merged 1 commits from Logo-addition into master 2023-10-18 10:44:32 +00:00
6 changed files with 12 additions and 12 deletions
@@ -104,7 +104,7 @@ const ForgotPasswordForm = () => {
<Box as="div" textAlign="center" mt="20px"> <Box as="div" textAlign="center" mt="20px">
<Link <Link
href="/authentication/sign-in/" href="/auth/sign-in/"
className="primaryColor text-decoration-none" className="primaryColor text-decoration-none"
> >
<i className="ri-arrow-left-s-line"></i> Back to Sign in <i className="ri-arrow-left-s-line"></i> Back to Sign in
+1 -1
View File
@@ -128,7 +128,7 @@ const SignInForm = () => {
<Grid item xs={6} sm={6} textAlign="end"> <Grid item xs={6} sm={6} textAlign="end">
<Link <Link
href="/authentication/forgot-password" href="/auth/forgot-password"
className="primaryColor text-decoration-none" className="primaryColor text-decoration-none"
> >
Forgot your password? Forgot your password?
+2 -2
View File
@@ -45,7 +45,7 @@ const SignUpForm = () => {
<Typography fontSize="15px" mb="30px"> <Typography fontSize="15px" mb="30px">
Already have an account?{" "} Already have an account?{" "}
<Link <Link
href="/authentication/sign-in/" href="/auth/sign-in/"
className="primaryColor text-decoration-none" className="primaryColor text-decoration-none"
> >
Sign in Sign in
@@ -204,7 +204,7 @@ const SignUpForm = () => {
<Grid item xs={6} sm={6} textAlign="end"> <Grid item xs={6} sm={6} textAlign="end">
<Link <Link
href="/authentication/forgot-password" href="/auth/forgot-password"
className="primaryColor text-decoration-none" className="primaryColor text-decoration-none"
> >
Forgot your password? Forgot your password?
+6 -6
View File
@@ -450,7 +450,7 @@ export const SidebarData = [
}, },
{ {
title: "Authentication", title: "Authentication",
path: "/authentication/sign-in/", path: "/auth/sign-in/",
icon: <LockIcon />, icon: <LockIcon />,
iconClosed: <KeyboardArrowRightIcon />, iconClosed: <KeyboardArrowRightIcon />,
iconOpened: <KeyboardArrowDownIcon />, iconOpened: <KeyboardArrowDownIcon />,
@@ -458,23 +458,23 @@ export const SidebarData = [
subNav: [ subNav: [
{ {
title: "Sign Up", title: "Sign Up",
path: "/authentication/sign-up/", path: "/auth/sign-up/",
}, },
{ {
title: "Forgot Password", title: "Forgot Password",
path: "/authentication/forgot-password/", path: "/auth/forgot-password/",
}, },
{ {
title: "Lock Screen", title: "Lock Screen",
path: "/authentication/lock-screen/", path: "/auth/lock-screen/",
}, },
{ {
title: "Confirm Mail", title: "Confirm Mail",
path: "/authentication/confirm-mail/", path: "/auth/confirm-mail/",
}, },
{ {
title: "Logout", title: "Logout",
path: "/authentication/logout/", path: "/auth/logout/",
}, },
], ],
}, },
+1 -1
View File
@@ -183,7 +183,7 @@ const Profile = () => {
</ListItemIcon> </ListItemIcon>
<Link <Link
href="/authentication/logout/" href="/auth/logout/"
fontSize="13px" fontSize="13px"
color="inherit" color="inherit"
underline="none" underline="none"
+1 -1
View File
@@ -51,7 +51,7 @@ export default function Logout() {
</Typography> </Typography>
<Button <Button
href="/authentication/sign-in/" href="/auth/sign-in/"
fullWidth fullWidth
variant="contained" variant="contained"
sx={{ sx={{