PasswordForgottenPage

This commit is contained in:
Vesa Luusua 2017-01-11 01:46:37 +02:00
parent 3c41b0cebe
commit 3e772291f2
3 changed files with 16 additions and 0 deletions

View file

@ -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

View file

@ -0,0 +1,7 @@
import React from 'react';
import { Page } from '../../components';
export default () => (
<Page title="Request new password">
</Page>
);

View file

@ -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,