Usability enhancements: allow login on enter key, added icons on login and logout buttons, added placeholder on gas modal

This commit is contained in:
DESKTOP-GENO133\IvanPlex
2024-01-05 08:52:48 -07:00
parent 578525fa8b
commit cfb8e6ea55
4 changed files with 18 additions and 12 deletions

View File

@@ -9,4 +9,9 @@
errorToast("Invalid Login Credentials, please try again.");
}
})
}
function handlePasswordKeyPress(event) {
if (event.keyCode == 13) {
performLogin();
}
}