mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Show password by default
This commit is contained in:
parent
3335207c54
commit
be41d004ad
2 changed files with 5 additions and 2 deletions
|
@ -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) {
|
||||
|
|
|
@ -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} />
|
||||
:
|
||||
[]
|
||||
|
|
Loading…
Reference in a new issue