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
+6 -1
View File
@@ -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: <Register />
}
},
{
path: "reset-password",
element: <ResetPassword />
},
]
}
])