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