changed all paths with authentication to auth
This commit was merged in pull request #3.
This commit is contained in:
@@ -104,7 +104,7 @@ const ForgotPasswordForm = () => {
|
||||
|
||||
<Box as="div" textAlign="center" mt="20px">
|
||||
<Link
|
||||
href="/authentication/sign-in/"
|
||||
href="/auth/sign-in/"
|
||||
className="primaryColor text-decoration-none"
|
||||
>
|
||||
<i className="ri-arrow-left-s-line"></i> Back to Sign in
|
||||
|
||||
@@ -128,7 +128,7 @@ const SignInForm = () => {
|
||||
|
||||
<Grid item xs={6} sm={6} textAlign="end">
|
||||
<Link
|
||||
href="/authentication/forgot-password"
|
||||
href="/auth/forgot-password"
|
||||
className="primaryColor text-decoration-none"
|
||||
>
|
||||
Forgot your password?
|
||||
|
||||
@@ -45,7 +45,7 @@ const SignUpForm = () => {
|
||||
<Typography fontSize="15px" mb="30px">
|
||||
Already have an account?{" "}
|
||||
<Link
|
||||
href="/authentication/sign-in/"
|
||||
href="/auth/sign-in/"
|
||||
className="primaryColor text-decoration-none"
|
||||
>
|
||||
Sign in
|
||||
@@ -204,7 +204,7 @@ const SignUpForm = () => {
|
||||
|
||||
<Grid item xs={6} sm={6} textAlign="end">
|
||||
<Link
|
||||
href="/authentication/forgot-password"
|
||||
href="/auth/forgot-password"
|
||||
className="primaryColor text-decoration-none"
|
||||
>
|
||||
Forgot your password?
|
||||
|
||||
@@ -450,7 +450,7 @@ export const SidebarData = [
|
||||
},
|
||||
{
|
||||
title: "Authentication",
|
||||
path: "/authentication/sign-in/",
|
||||
path: "/auth/sign-in/",
|
||||
icon: <LockIcon />,
|
||||
iconClosed: <KeyboardArrowRightIcon />,
|
||||
iconOpened: <KeyboardArrowDownIcon />,
|
||||
@@ -458,23 +458,23 @@ export const SidebarData = [
|
||||
subNav: [
|
||||
{
|
||||
title: "Sign Up",
|
||||
path: "/authentication/sign-up/",
|
||||
path: "/auth/sign-up/",
|
||||
},
|
||||
{
|
||||
title: "Forgot Password",
|
||||
path: "/authentication/forgot-password/",
|
||||
path: "/auth/forgot-password/",
|
||||
},
|
||||
{
|
||||
title: "Lock Screen",
|
||||
path: "/authentication/lock-screen/",
|
||||
path: "/auth/lock-screen/",
|
||||
},
|
||||
{
|
||||
title: "Confirm Mail",
|
||||
path: "/authentication/confirm-mail/",
|
||||
path: "/auth/confirm-mail/",
|
||||
},
|
||||
{
|
||||
title: "Logout",
|
||||
path: "/authentication/logout/",
|
||||
path: "/auth/logout/",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -183,7 +183,7 @@ const Profile = () => {
|
||||
</ListItemIcon>
|
||||
|
||||
<Link
|
||||
href="/authentication/logout/"
|
||||
href="/auth/logout/"
|
||||
fontSize="13px"
|
||||
color="inherit"
|
||||
underline="none"
|
||||
|
||||
@@ -51,7 +51,7 @@ export default function Logout() {
|
||||
</Typography>
|
||||
|
||||
<Button
|
||||
href="/authentication/sign-in/"
|
||||
href="/auth/sign-in/"
|
||||
fullWidth
|
||||
variant="contained"
|
||||
sx={{
|
||||
|
||||
Reference in New Issue
Block a user