aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/unlock.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-11-02 06:00:28 +0800
committerDan Finlay <dan@danfinlay.com>2016-11-02 06:00:28 +0800
commit72729060dc8366dbe965bd66c3b98b88bdb21830 (patch)
tree33b9dff55ca925dda06a6d5b046187bf188de129 /ui/app/unlock.js
parent14ad58eef13eb3ba8e9ab540d710e9b9f659ab8c (diff)
downloadtangerine-wallet-browser-72729060dc8366dbe965bd66c3b98b88bdb21830.tar.gz
tangerine-wallet-browser-72729060dc8366dbe965bd66c3b98b88bdb21830.tar.zst
tangerine-wallet-browser-72729060dc8366dbe965bd66c3b98b88bdb21830.zip
Make forgot password button.
Diffstat (limited to 'ui/app/unlock.js')
-rw-r--r--ui/app/unlock.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/ui/app/unlock.js b/ui/app/unlock.js
index ca74c94c3..5c9a94f39 100644
--- a/ui/app/unlock.js
+++ b/ui/app/unlock.js
@@ -65,6 +65,17 @@ UnlockScreen.prototype.render = function () {
},
}, 'Unlock'),
]),
+
+ h('.flex-row.flex-center.flex-grow', [
+ h('p.pointer', {
+ onClick: () => this.props.dispatch(actions.showRestoreVault()),
+ style: {
+ fontSize: '0.8em',
+ color: 'rgb(247, 134, 28)',
+ textDecoration: 'underline',
+ },
+ }, 'I forgot my password.'),
+ ]),
])
)
}