summaryrefslogtreecommitdiff
path: root/web-ui/src/account_recovery/page.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/src/account_recovery/page.js')
-rw-r--r--web-ui/src/account_recovery/page.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/web-ui/src/account_recovery/page.js b/web-ui/src/account_recovery/page.js
index c77da0b6..2a2f6fe6 100644
--- a/web-ui/src/account_recovery/page.js
+++ b/web-ui/src/account_recovery/page.js
@@ -18,8 +18,9 @@
import React from 'react';
import { translate } from 'react-i18next';
import DocumentTitle from 'react-document-title';
-import Footer from 'src/common/footer/footer';
import Header from 'src/common/header/header';
+import AdminRecoveryCodeForm from 'src/account_recovery/forms/admin_recovery_code_form';
+import Footer from 'src/common/footer/footer';
import 'font-awesome/scss/font-awesome.scss';
import './page.scss';
@@ -29,7 +30,11 @@ export const Page = ({ t }) => (
<DocumentTitle title={t('account-recovery.page-title')}>
<div className='page'>
<Header />
- <section />
+ <section>
+ <div className='container'>
+ <AdminRecoveryCodeForm />
+ </div>
+ </section>
<Footer />
</div>
</DocumentTitle>