|
|
|
@ -21,6 +21,7 @@ function mapStateToProps (state) { |
|
|
|
|
// state from plugin
|
|
|
|
|
currentView: state.appState.currentView, |
|
|
|
|
warning: state.appState.warning, |
|
|
|
|
forgottenPassword: state.metamask.isInitialized, |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -117,6 +118,17 @@ InitializeMenuScreen.prototype.renderMenu = function (state) { |
|
|
|
|
}, |
|
|
|
|
}, 'Create'), |
|
|
|
|
|
|
|
|
|
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', |
|
|
|
|
}, |
|
|
|
|
}, 'Return to Login'), |
|
|
|
|
]) : null, |
|
|
|
|
|
|
|
|
|
h('.flex-row.flex-center.flex-grow', [ |
|
|
|
|
h('p.pointer', { |
|
|
|
|
onClick: this.showRestoreVault.bind(this), |
|
|
|
@ -125,7 +137,7 @@ InitializeMenuScreen.prototype.renderMenu = function (state) { |
|
|
|
|
color: 'rgb(247, 134, 28)', |
|
|
|
|
textDecoration: 'underline', |
|
|
|
|
}, |
|
|
|
|
}, 'I already have a DEN that I would like to import'), |
|
|
|
|
}, 'Import Existing DEN'), |
|
|
|
|
]), |
|
|
|
|
|
|
|
|
|
]) |
|
|
|
@ -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 |
|
|
|
|