Skip to content

Commit

Permalink
add reset link page
Browse files Browse the repository at this point in the history
  • Loading branch information
dineshigdd committed Jan 8, 2023
1 parent 740f8a3 commit 4067422
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Forgot from './Pages/ForgotPassword/ForgotPassword';
import NotFound from './Pages/NotFound/NotFound';
import Home from './Pages/Home/Home';
import Reset from './Pages/ResetPassword/ResetPassword';
import ResetLink from './Pages/ResetPassword/ResetLink';

function App() {
return (
Expand All @@ -17,6 +18,7 @@ function App() {
<Route path='/signup' element={<Signup />} />
<Route path='/forgot' element={<Forgot />} />
<Route path='/reset' element={<Reset />} />
<Route path='/reset-link' element={<ResetLink />} />
<Route path='/profile' element={<Profile />} />
<Route path='/:path' element={<NotFound />} />
</Routes>
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/ResetPassword/ResetPassword.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function ResetPassword() {
type="password"
onChange={handleConfirmPasswordChange}
/>

<ButtonWrapper>
<button type="reset" onClick={clearInput}>
Cancel
Expand Down

0 comments on commit 4067422

Please sign in to comment.