added some auth pages

This commit was merged in pull request #1.
This commit is contained in:
victorAnumudu
2024-12-05 01:19:09 +01:00
parent bf47d0e304
commit 0e29ece398
25 changed files with 482 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
import React from 'react'
import Forgetpwd from '../component/auth/Forgetpwd'
export default function ForgetpwdPage() {
return (
<Forgetpwd />
)
}
-4
View File
@@ -1,4 +0,0 @@
import '../../css/App.css';
export default function Home(){
return <div className="samatze">Merms Panel Home</div>;
}
+9
View File
@@ -0,0 +1,9 @@
import { Link } from 'react-router-dom';
import siteLinks from '../links/siteLinks';
import '../css/App.css';
export default function HomePage(){
return <div className="samatze">Merms Panel Home <Link to={siteLinks.login}>Logout</Link> </div>;
}
+8
View File
@@ -0,0 +1,8 @@
import React from 'react'
import Login from '../component/auth/Login'
export default function LoginPage() {
return (
<Login />
)
}
+8
View File
@@ -0,0 +1,8 @@
import React from 'react'
import Signup from '../component/auth/Signup'
export default function SignupPage() {
return (
<Signup />
)
}