mirror of
https://github.com/grocy/grocy.git
synced 2026-03-31 01:59:26 +02:00
11 lines
232 B
JavaScript
11 lines
232 B
JavaScript
$('.logout-button').hide();
|
|
$('.logout-button-divider').hide();
|
|
|
|
$('#username').focus();
|
|
|
|
if (GetUriParam('invalid') === 'true')
|
|
{
|
|
$('#login-error').text(L('Invalid credentials, please try again'));
|
|
$('#login-error').show();
|
|
}
|