mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
$('.logout-button').hide();
|
|
|
|
$('#username').focus();
|
|
|
|
if (GetUriParam('invalid') === 'true')
|
|
{
|
|
$('#login-error').text(L('Invalid credentials, please try again'));
|
|
$('#login-error').show();
|
|
}
|