complete reset password page - change input component - create combobox component

This commit is contained in:
Alihaghighattalab
2024-08-05 12:20:59 +03:30
parent 7c22c9e132
commit 0e5089aad5
8 changed files with 313 additions and 33 deletions
+13
View File
@@ -0,0 +1,13 @@
import React from "react"
import { ResetPasswordForm } from "../../components/forms/reset-password.form"
export const ResetPassword = () => {
return (
<React.Fragment>
<ResetPasswordForm />
<div className="hidden xl:flex w-1/2 h-full justify-center items-center">
<img src="/svgs/auth/reset-password.svg" alt="reset password" className="auth-image-desktop" />
</div>
</React.Fragment>
)
}