diff options
Diffstat (limited to 'ui/app/accounts/import/private-key.js')
-rw-r--r-- | ui/app/accounts/import/private-key.js | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/ui/app/accounts/import/private-key.js b/ui/app/accounts/import/private-key.js index e8c192a6..0b49d328 100644 --- a/ui/app/accounts/import/private-key.js +++ b/ui/app/accounts/import/private-key.js @@ -33,15 +33,22 @@ PrivateKeyImportView.prototype.render = function () { return ( h('div.new-account-import-form__private-key', [ + h('span.new-account-create-form__instruction', t('pastePrivateKey')), - h('input.new-account-import-form__input-password', { - type: 'password', - id: 'private-key-box', - onKeyPress: () => this.createKeyringOnEnter(), - }), + h('div.new-account-import-form__private-key-password-container', [ + + h('span.new-account-import-form__instruction', 'Paste your private key string here:'), + + h('input.new-account-import-form__input-password', { + type: 'password', + id: 'private-key-box', + onKeyPress: () => this.createKeyringOnEnter(), + }), + + ]), - h('div.new-account-create-form__buttons', {}, [ + h('div.new-account-import-form__buttons', {}, [ h('button.new-account-create-form__button-cancel.allcaps', { onClick: () => goHome(), |