complete reset password code page - complete auth pages

This commit is contained in:
Alihaghighattalab
2024-08-05 13:40:02 +03:30
parent 277b13e5d8
commit a581dcce7e
4 changed files with 309 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import React from "react"
import { ResetpasswordCodeForm } from "../../components/forms/reset-password-code-form"
export const ResetPasswordCode = () => {
return (
<React.Fragment>
<ResetpasswordCodeForm />
<div className="hidden xl:flex w-1/2 h-full justify-center items-center">
<img src="/svgs/auth/reset-password-code.svg" alt="send code reset password" className="auth-image-desktop" />
</div>
</React.Fragment>
)
}