mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +00:00
11 lines
235 B
JavaScript
11 lines
235 B
JavaScript
setTimeout(function()
|
|
{
|
|
$('#username').focus();
|
|
}, Grocy.FormFocusDelay);
|
|
|
|
if (GetUriParam('invalid') === 'true')
|
|
{
|
|
$('#login-error').text(__t('Invalid credentials, please try again'));
|
|
$('#login-error').removeClass('d-none');
|
|
}
|