summaryrefslogtreecommitdiffstats
path: root/ui/src/index.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-11-01 23:41:57 -0700
committerDessalines <tyhou13@gmx.com>2019-11-01 23:41:57 -0700
commit68e4b61808ee76730cdc9f4302700a60a2ebb3b5 (patch)
tree8d36fb7b39b963696dc980f89f836b52c4aea20a /ui/src/index.tsx
parent9f35b33dc7238f0d6748beafa79ca0af192b5ca6 (diff)
Password reset mostly working.
Diffstat (limited to 'ui/src/index.tsx')
-rw-r--r--ui/src/index.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/ui/src/index.tsx b/ui/src/index.tsx
index f3c7ff38..2e50db88 100644
--- a/ui/src/index.tsx
+++ b/ui/src/index.tsx
@@ -7,6 +7,7 @@ import { Footer } from './components/footer';
import { Login } from './components/login';
import { CreatePost } from './components/create-post';
import { CreateCommunity } from './components/create-community';
+import { PasswordChange } from './components/password_change';
import { Post } from './components/post';
import { Community } from './components/community';
import { Communities } from './components/communities';
@@ -74,6 +75,10 @@ class Index extends Component<any, any> {
/>
<Route path={`/search`} component={Search} />
<Route path={`/sponsors`} component={Sponsors} />
+ <Route
+ path={`/password_change/:token`}
+ component={PasswordChange}
+ />
</Switch>
<Symbols />
</div>