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

View file

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