aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/accounts/import
diff options
context:
space:
mode:
authorThomas <tmashuang@gmail.com>2018-02-28 04:01:09 +0800
committerThomas <tmashuang@gmail.com>2018-02-28 04:01:09 +0800
commit50f20358c1ffe0e04f65025db9ac9627af313b33 (patch)
treea20a4635f290f8baa49472030216af11e046cd9f /ui/app/accounts/import
parentced62ac551a095c8f94f550f0c01a9d4fd04ce5b (diff)
downloadtangerine-wallet-browser-50f20358c1ffe0e04f65025db9ac9627af313b33.tar.gz
tangerine-wallet-browser-50f20358c1ffe0e04f65025db9ac9627af313b33.tar.zst
tangerine-wallet-browser-50f20358c1ffe0e04f65025db9ac9627af313b33.zip
Add import account disclaimer
Diffstat (limited to 'ui/app/accounts/import')
-rw-r--r--ui/app/accounts/import/index.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/ui/app/accounts/import/index.js b/ui/app/accounts/import/index.js
index 71eb9ae23..7e7d3aa91 100644
--- a/ui/app/accounts/import/index.js
+++ b/ui/app/accounts/import/index.js
@@ -35,6 +35,28 @@ AccountImportSubview.prototype.render = function () {
return (
h('div.new-account-import-form', [
+ h('.warning', {
+ style: {
+ display: 'inline-block',
+ alignItems: 'center',
+ padding: '15px 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.new-account-import-form__select-section', [
h('div.new-account-import-form__select-label', 'Select Type'),