+
)
}
\ No newline at end of file
diff --git a/src/components/forms/register-form.tsx b/src/components/forms/register-form.tsx
index 190e61b..6c8f988 100644
--- a/src/components/forms/register-form.tsx
+++ b/src/components/forms/register-form.tsx
@@ -1,5 +1,5 @@
import { Link } from "react-router-dom"
-import { DropDown } from "../common/drop-down"
+import { ComboBox } from "../common/combo-box"
import { Input } from "../common/input"
export const RegisterForm = () => {
@@ -20,8 +20,8 @@ export const RegisterForm = () => {
-
-
+
+
diff --git a/src/components/forms/reset-password.form.tsx b/src/components/forms/reset-password.form.tsx
new file mode 100644
index 0000000..03d3512
--- /dev/null
+++ b/src/components/forms/reset-password.form.tsx
@@ -0,0 +1,28 @@
+import { Link } from "react-router-dom"
+import { Input } from "../common/input"
+
+
+export const ResetPasswordForm = () => {
+ return (
+
+

+
+
+
بازیابی رمز عبور
+
+
کد تایید ارسال شده به شماره 09376225448 را وارد کنید.
+
+
ویرایش
+
+
+
+
+
+
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/src/pages/auth/reset-password.tsx b/src/pages/auth/reset-password.tsx
new file mode 100644
index 0000000..8905420
--- /dev/null
+++ b/src/pages/auth/reset-password.tsx
@@ -0,0 +1,13 @@
+import React from "react"
+import { ResetPasswordForm } from "../../components/forms/reset-password.form"
+
+export const ResetPassword = () => {
+ return (
+
+
+
+

+
+
+ )
+}
\ No newline at end of file
diff --git a/src/router/index.tsx b/src/router/index.tsx
index 34a2ec1..f2953bc 100644
--- a/src/router/index.tsx
+++ b/src/router/index.tsx
@@ -4,6 +4,7 @@ import App from "../App";
import { Login } from "../pages/auth/login";
import { ForgotPassword } from "../pages/auth/forgot-password";
import { Register } from "../pages/auth/register";
+import { ResetPassword } from "../pages/auth/reset-password";
export const router = createBrowserRouter([
{
@@ -25,7 +26,11 @@ export const router = createBrowserRouter([
{
path: "register",
element:
- }
+ },
+ {
+ path: "reset-password",
+ element:
+ },
]
}
])
\ No newline at end of file