aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/accounts/import/index.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2018-03-08 05:39:44 +0800
committerDan Finlay <dan@danfinlay.com>2018-03-08 05:39:44 +0800
commitd0ba2d2d9428f13208ea54e9fa78f122ed42549b (patch)
tree7786903649241ab688b5622719cae34f804abef7 /old-ui/app/accounts/import/index.js
parent423f084cb47d84e2e9063a6567454f83592f424b (diff)
parentca047b1ea0bd6778fc3b0c05b86ff23d0964f98d (diff)
downloadtangerine-wallet-browser-d0ba2d2d9428f13208ea54e9fa78f122ed42549b.tar.gz
tangerine-wallet-browser-d0ba2d2d9428f13208ea54e9fa78f122ed42549b.tar.zst
tangerine-wallet-browser-d0ba2d2d9428f13208ea54e9fa78f122ed42549b.zip
Merge branch 'master' into i3076-UseStorageLocalInstead
Diffstat (limited to 'old-ui/app/accounts/import/index.js')
-rw-r--r--old-ui/app/accounts/import/index.js26
1 files changed, 22 insertions, 4 deletions
diff --git a/old-ui/app/accounts/import/index.js b/old-ui/app/accounts/import/index.js
index 3502efe93..a57525ccf 100644
--- a/old-ui/app/accounts/import/index.js
+++ b/old-ui/app/accounts/import/index.js
@@ -34,10 +34,7 @@ AccountImportSubview.prototype.render = function () {
const { type } = state
return (
- h('div', {
- style: {
- },
- }, [
+ h('div', [
h('.section-title.flex-row.flex-center', [
h('i.fa.fa-arrow-left.fa-lg.cursor-pointer', {
onClick: (event) => {
@@ -46,6 +43,27 @@ AccountImportSubview.prototype.render = function () {
}),
h('h2.page-subtitle', 'Import Accounts'),
]),
+ h('.error', {
+ style: {
+ display: 'inline-block',
+ alignItems: 'center',
+ padding: '5px 15px 0px 15px',
+ },
+ }, [
+ h('span', 'Imported accounts will not be associated with your originally created MetaMask account seedphrase. Learn more about imported accounts '),
+ h('span', {
+ style: {
+ color: 'rgba(247, 134, 28, 1)',
+ cursor: 'pointer',
+ textDecoration: 'underline',
+ },
+ onClick: () => {
+ global.platform.openWindow({
+ url: 'https://metamask.helpscoutdocs.com/article/17-what-are-loose-accounts',
+ })
+ },
+ }, 'here.'),
+ ]),
h('div', {
style: {
padding: '10px',