mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Check to make sure passwords aren't blank
This commit is contained in:
parent
ca593b8544
commit
3555f35737
@ -35,6 +35,11 @@ module.exports = React.createClass({
|
|||||||
state: this.Phases.Error,
|
state: this.Phases.Error,
|
||||||
errorString: "Passwords don't match"
|
errorString: "Passwords don't match"
|
||||||
});
|
});
|
||||||
|
} else if (new_password == '' || old_password == '') {
|
||||||
|
this.setState({
|
||||||
|
state: this.Phases.Error,
|
||||||
|
errorString: "Passwords can't be empty"
|
||||||
|
});
|
||||||
} else {
|
} else {
|
||||||
this.changePassword(old_password, new_password);
|
this.changePassword(old_password, new_password);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user