webapp: setting username to lower case.

This commit is contained in:
Shreyas Zare
2021-07-18 15:51:48 +05:30
parent edc142f66d
commit 17a014392f

View File

@@ -496,7 +496,7 @@ function login(username, password) {
var autoLogin = false;
if (username == null) {
username = $("#txtUser").val();
username = $("#txtUser").val().toLowerCase();
password = $("#txtPass").val();
}
else {