complete login forgot signup page - init project

This commit is contained in:
Alihaghighattalab
2024-08-04 19:47:09 +03:30
commit 7c22c9e132
31 changed files with 21027 additions and 0 deletions
+12
View File
@@ -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>
</>
)
}
+13
View File
@@ -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>
</>
)
}
+12
View File
@@ -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>
</>
)
}