mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
PasswordForgottenPage
This commit is contained in:
parent
3c41b0cebe
commit
3e772291f2
3 changed files with 16 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ import {
|
|||
LandingPage,
|
||||
ListingPage,
|
||||
OrderPage,
|
||||
PasswordForgottenPage,
|
||||
ProfilePage,
|
||||
EditProfilePage,
|
||||
SalesConversationPage,
|
||||
|
|
@ -91,6 +92,12 @@ class Routes extends React.Component {
|
|||
(props) => <AuthenticationPage { ...props } tab='signup' />
|
||||
} />
|
||||
|
||||
{/* Password forgotten */}
|
||||
<Match
|
||||
exactly
|
||||
pattern="/password/forgotten"
|
||||
component={ PasswordForgottenPage } />
|
||||
|
||||
{/* Inbox and filtered views */}
|
||||
<MatchWhenAuthorized
|
||||
exactly
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
import React from 'react';
|
||||
import { Page } from '../../components';
|
||||
|
||||
export default () => (
|
||||
<Page title="Request new password">
|
||||
</Page>
|
||||
);
|
||||
|
|
@ -6,6 +6,7 @@ import InboxPage from './InboxPage/InboxPage';
|
|||
import LandingPage from './LandingPage/LandingPage';
|
||||
import ListingPage from './ListingPage/ListingPage';
|
||||
import OrderPage from './OrderPage/OrderPage';
|
||||
import PasswordForgottenPage from './PasswordForgottenPage/PasswordForgottenPage';
|
||||
import ProfilePage from './ProfilePage/ProfilePage';
|
||||
import SalesConversationPage from './SalesConversationPage/SalesConversationPage';
|
||||
import SearchPage from './SearchPage/SearchPage';
|
||||
|
|
@ -20,6 +21,7 @@ export {
|
|||
LandingPage,
|
||||
ListingPage,
|
||||
OrderPage,
|
||||
PasswordForgottenPage,
|
||||
ProfilePage,
|
||||
SalesConversationPage,
|
||||
SearchPage,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue