Show password by default

This commit is contained in:
Ray Schamp 2016-07-21 21:07:02 -04:00
parent 3335207c54
commit be41d004ad
2 changed files with 5 additions and 2 deletions

View file

@ -51,12 +51,13 @@ module.exports = {
UsernameStep: intl.injectIntl(React.createClass({
getDefaultProps: function () {
return {
showPassword: false,
waiting: false
};
},
getInitialState: function () {
return {
showPassword: false,
showPassword: this.props.showPassword,
waiting: false,
validUsername: ''
};
@ -188,12 +189,13 @@ module.exports = {
ChoosePasswordStep: intl.injectIntl(React.createClass({
getDefaultProps: function () {
return {
showPassword: false,
waiting: false
};
},
getInitialState: function () {
return {
showPassword: false
showPassword: this.props.showPassword
};
},
onChangeShowPassword: function (field, value) {

View file

@ -117,6 +117,7 @@ var StudentCompleteRegistration = intl.injectIntl(React.createClass({
waiting={this.state.waiting} />
{this.props.session.session.flags.must_reset_password ?
<Steps.ChoosePasswordStep onNextStep={this.advanceStep}
showPassword={true}
waiting={this.state.waiting} />
:
[]