new layout pages duplicated
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import ForgotPassword from "../components/AuthPages/ForgotPassword/index2";
|
||||
|
||||
export default function ForgotPasswordPagesTwo() {
|
||||
return (
|
||||
<>
|
||||
<ForgotPassword />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
import Login from "../components/AuthPages/Login/index2";
|
||||
|
||||
function LoginPageTwo() {
|
||||
return (
|
||||
<>
|
||||
<Login />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default LoginPageTwo;
|
||||
@@ -0,0 +1,12 @@
|
||||
import React from "react";
|
||||
import SignUp from "../components/AuthPages/SignUp/index2";
|
||||
|
||||
function SignupPageTwo() {
|
||||
return (
|
||||
<>
|
||||
<SignUp />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
export default SignupPageTwo;
|
||||
@@ -0,0 +1,10 @@
|
||||
import React from "react";
|
||||
import UpdatePassword from "../components/AuthPages/UpdatePassword/index2";
|
||||
|
||||
export default function UpdatePasswordPagesTwo() {
|
||||
return (
|
||||
<>
|
||||
<UpdatePassword />
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
import VerifyLink from "../components/AuthPages/VerifyLink/index2";
|
||||
|
||||
export default function VerifyLinkPagesTwo() {
|
||||
return <VerifyLink />;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import VerifyPassword from "../components/AuthPages/VerifyPassword/index2";
|
||||
|
||||
export default function VerifyPasswordPagesTwo() {
|
||||
return <VerifyPassword />;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
import React from "react";
|
||||
import VerifyYou from "../components/AuthPages/VerifyYou/index2";
|
||||
|
||||
export default function VerifyYouPagesTwo() {
|
||||
return <VerifyYou />;
|
||||
}
|
||||
Reference in New Issue
Block a user