They just added an on-screen keyboard which doesn't even work and seem like a "keep engineers busy" strategy. Have they ever heard of password managers?
Ended up flying back to the home country to get my IDs renewed. It's fun when you ID expires in less than six months so you can't leave the country until you got your new IDs
I finally figured out a way to script that input form from chrome dev tools (https://urjit.io/blog/vfs/#update)
``` const input = document.getElementById('password'); const event = new Event('input', { bubbles: true }); input.value = 'password'; input.dispatchEvent(event); ```