From 72729060dc8366dbe965bd66c3b98b88bdb21830 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Tue, 1 Nov 2016 15:00:28 -0700 Subject: Make forgot password button. --- ui/app/unlock.js | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ui/app/unlock.js') 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.'), + ]), ]) ) } -- cgit