added user name submit with enter key

This commit is contained in:
2026-04-19 16:05:57 +02:00
parent 3f72ef3bc4
commit d29f484993

View File

@@ -885,3 +885,8 @@ loadContributions();
// Show Welcome Modal on first Visit
checkWelcomeModal();
// Submits Login with Key Press
document.getElementById('user-name-input').addEventListener('keydown', function (e) {
if (e.key === 'Enter') submitLogin();
});