complete login forgot signup page - init project
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { ForgotPasswordForm } from "../../components/forms/forgot-password-form"
|
||||
|
||||
export const ForgotPassword = () => {
|
||||
return (
|
||||
<>
|
||||
<ForgotPasswordForm />
|
||||
<div className="hidden xl:flex w-1/2 h-full justify-center items-center">
|
||||
<img src="/svgs/auth/forgot-password.svg" alt="forgot password" className="auth-image-desktop" />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
|
||||
import { LoginForm } from "../../components/forms/login-form"
|
||||
|
||||
export const Login = () => {
|
||||
return (
|
||||
<>
|
||||
<LoginForm />
|
||||
<div className="hidden xl:flex w-1/2 h-full justify-center items-center">
|
||||
<img src="/svgs/auth/login.svg" alt="login" className="auth-image-desktop" />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import { RegisterForm } from "../../components/forms/register-form"
|
||||
|
||||
export const Register = () => {
|
||||
return (
|
||||
<>
|
||||
<RegisterForm />
|
||||
<div className="hidden xl:flex w-1/2 h-full justify-center items-center">
|
||||
<img src="/svgs/auth/register.svg" alt="register" className="auth-image-desktop" />
|
||||
</div>
|
||||
</>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user