summaryrefslogtreecommitdiff
path: root/web-ui/app/js/account_recovery/page.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/account_recovery/page.js')
-rw-r--r--web-ui/app/js/account_recovery/page.js28
1 files changed, 0 insertions, 28 deletions
diff --git a/web-ui/app/js/account_recovery/page.js b/web-ui/app/js/account_recovery/page.js
deleted file mode 100644
index a94c2c45..00000000
--- a/web-ui/app/js/account_recovery/page.js
+++ /dev/null
@@ -1,28 +0,0 @@
-import React from 'react'
-import { translate } from 'react-i18next'
-
-import 'scss/account_recovery/page.scss'
-
-export const Page = ({ t }) => (
- <div className='container'>
- <img src='assets/images/forgot-my-password.svg' alt={t('backup-account.image-description')}/>
- <form>
- <h1>{t('backup-account.title')}</h1>
- <p>{t('backup-account.paragraph1')}</p>
- <p>{t('backup-account.paragraph2')}</p>
- <div className="field-group">
- <input type="text" name="email" className="email" required/>
- <label className="animated-label" htmlFor="email">{t('backup-account.input-label')}</label>
- </div>
- <button>{t('backup-account.button')}</button>
- <div>
- <a href="/">
- <i className="fa fa-angle-left" aria-hidden="true"></i>
- <span>{t('back-to-inbox')}</span>
- </a>
- </div>
- </form>
- </div>
-)
-
-export default translate('', { wait: true })(Page)