mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 17:45:39 +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();
|
|
}
|
|
});
|