aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-11-24 07:29:42 +0800
committerKevin Serrano <kevgagser@gmail.com>2016-11-24 07:29:42 +0800
commit3a503d2ac21ebb0d49e718527e7bcaddc6d6f322 (patch)
treeb40a4536e7b31063d1395076e672eb57396ced57 /ui/app
parent5a02e58f6287422a569f316fd4b2dd0144f50e99 (diff)
downloadtangerine-wallet-browser-3a503d2ac21ebb0d49e718527e7bcaddc6d6f322.tar
tangerine-wallet-browser-3a503d2ac21ebb0d49e718527e7bcaddc6d6f322.tar.gz
tangerine-wallet-browser-3a503d2ac21ebb0d49e718527e7bcaddc6d6f322.tar.bz2
tangerine-wallet-browser-3a503d2ac21ebb0d49e718527e7bcaddc6d6f322.tar.lz
tangerine-wallet-browser-3a503d2ac21ebb0d49e718527e7bcaddc6d6f322.tar.xz
tangerine-wallet-browser-3a503d2ac21ebb0d49e718527e7bcaddc6d6f322.tar.zst
tangerine-wallet-browser-3a503d2ac21ebb0d49e718527e7bcaddc6d6f322.zip
Add link back to unlock.
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/first-time/init-menu.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/ui/app/first-time/init-menu.js b/ui/app/first-time/init-menu.js
index 6ceee6784..f9fb77aa5 100644
--- a/ui/app/first-time/init-menu.js
+++ b/ui/app/first-time/init-menu.js
@@ -21,6 +21,7 @@ function mapStateToProps (state) {
// state from plugin
currentView: state.appState.currentView,
warning: state.appState.warning,
+ forgottenPassword: state.appState.forgottenPassword,
}
}
@@ -128,6 +129,17 @@ InitializeMenuScreen.prototype.renderMenu = function (state) {
}, 'I already have a DEN that I would like to import'),
]),
+ state.forgottenPassword ? h('.flex-row.flex-center.flex-grow', [
+ h('p.pointer', {
+ onClick: this.backToUnlockView.bind(this),
+ style: {
+ fontSize: '0.8em',
+ color: 'rgb(247, 134, 28)',
+ textDecoration: 'underline',
+ },
+ }, 'I remember my password!'),
+ ]) : null,
+
])
)
}
@@ -147,6 +159,10 @@ InitializeMenuScreen.prototype.showRestoreVault = function () {
this.props.dispatch(actions.showRestoreVault())
}
+InitializeMenuScreen.prototype.backToUnlockView = function () {
+ this.props.dispatch(actions.backToUnlockView())
+}
+
InitializeMenuScreen.prototype.createNewVaultAndKeychain = function () {
var passwordBox = document.getElementById('password-box')
var password = passwordBox.value