mirror of
https://github.com/grocy/grocy.git
synced 2025-10-04 06:01:44 +00:00
13 lines
226 B
JavaScript
13 lines
226 B
JavaScript
![]() |
$(function()
|
|||
|
{
|
|||
|
$('.logout-button').hide();
|
|||
|
|
|||
|
$('#username').focus();
|
|||
|
|
|||
|
if (Grocy.GetUriParam('invalid') === 'true')
|
|||
|
{
|
|||
|
$('#login-error').text('Invalid credentials, please try again.');
|
|||
|
$('#login-error').show();
|
|||
|
}
|
|||
|
});
|