auth page added

This commit was merged in pull request #5.
This commit is contained in:
victorAnumudu
2024-12-05 19:36:25 +01:00
parent 0a149342e7
commit 5efe24d858
9 changed files with 216 additions and 14 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
import React from 'react'
import Forgetpwd from '../component/auth/Forgetpwd'
import Forgetpwd2 from '../component/auth/Forgetpwd2'
export default function ForgetpwdPage() {
return (
<Forgetpwd />
<Forgetpwd2 />
)
}
+2 -2
View File
@@ -1,8 +1,8 @@
import React from 'react'
import Login from '../component/auth/Login'
import Login2 from '../component/auth/Login2'
export default function LoginPage() {
return (
<Login />
<Login2 />
)
}
+2 -2
View File
@@ -1,8 +1,8 @@
import React from 'react'
import Signup from '../component/auth/Signup'
import Signup2 from '../component/auth/Signup2'
export default function SignupPage() {
return (
<Signup />
<Signup2 />
)
}