Agent HTML popup to ask password

is there a way to do a popup to request a password into the agent?

The agent can do javascripting because javascripting is processed locally by your browser. That means it can do cookies too, since that is also local to your computer. But it cannot do server-side scripting. Normally, log-ins are handled server-side using SESSION (example PHP). Cookies, being stored on the user’s PC are not secure. So you have some decisions to make about how secure it needs to be, whether only 1 person at a time can be logged in, or could there be 10 people using it at the same time?

I see this … not sure if it what you’re looking for:

only one person, and its not really critical, but thank you very much