diff --git a/src/Routes.js b/src/Routes.js
index 53fa4409..b430a668 100644
--- a/src/Routes.js
+++ b/src/Routes.js
@@ -8,6 +8,7 @@ import {
LandingPage,
ListingPage,
OrderPage,
+ PasswordForgottenPage,
ProfilePage,
EditProfilePage,
SalesConversationPage,
@@ -91,6 +92,12 @@ class Routes extends React.Component {
(props) =>
} />
+ {/* Password forgotten */}
+
+
{/* Inbox and filtered views */}
(
+
+
+);
diff --git a/src/containers/index.js b/src/containers/index.js
index fae9e86e..70b929d7 100644
--- a/src/containers/index.js
+++ b/src/containers/index.js
@@ -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,