From 70c39387574613b0436f515a0e2644a18e348c56 Mon Sep 17 00:00:00 2001 From: dharshib Date: Sun, 23 Jun 2024 15:35:17 +0530 Subject: [PATCH] add resetpassword feature --- src/App.js | 8 ++ src/Components/Login.css | 9 ++ src/Components/Login.js | 1 + .../auth/resetPassword/EmailVerification.js | 51 +++++++++++ .../auth/resetPassword/OTPVerification.js | 89 +++++++++++++++++++ .../auth/resetPassword/ResetPassword.js | 76 ++++++++++++++++ .../auth/resetPassword/resetPassword.css | 43 +++++++++ 7 files changed, 277 insertions(+) create mode 100644 src/Components/auth/resetPassword/EmailVerification.js create mode 100644 src/Components/auth/resetPassword/OTPVerification.js create mode 100644 src/Components/auth/resetPassword/ResetPassword.js create mode 100644 src/Components/auth/resetPassword/resetPassword.css diff --git a/src/App.js b/src/App.js index 36d8c551..3e474f48 100644 --- a/src/App.js +++ b/src/App.js @@ -19,6 +19,9 @@ import Profile from "./Components/Profile/profile"; import Licensing from "./Components/footer_section/Legal/Licensing"; import TermsConditions from "./Components/footer_section/Legal/TermsandConditions"; import PrivacyPolicy from "./Components/footer_section/Legal/PrivacyPolicy"; +import EmailVerification from "./Components/auth/resetPassword/EmailVerification"; +import OTPVerification from "./Components/auth/resetPassword/OTPVerification"; +import ResetPassword from "./Components/auth/resetPassword/ResetPassword"; function App() { return ( @@ -48,6 +51,11 @@ function App() { } /> } /> } /> + } /> + } /> + } /> + +