forms - Restrict scope of HTML autocompletion -


i have web application frontend on / , backend on /backend, both have different login-sets.

currently, autocompletion fills frontend user/pass in backend, , vice versa - way prevent this, still allow user/pass autocompletion?

thanks!

<form autocomplete ="off"> 

or use

<input type="text" autocomplete ="off"> 

Comments