diff options
Make forgot password button.
Diffstat (limited to 'ui/app/unlock.js')
-rw-r--r-- | ui/app/unlock.js | 11 |
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.'), + ]), ]) ) } |