I already tried solutions in these 2 questions: Why isnt the browser asking to remember the password? and How does browser know when to prompt user to save password?, but I can't get the browser to record the password of the login form on this site: http://lksonorizacao.com.br/newsite/?painel. The form is placed there by PHP, no AJAX or anything dynamic. This is the form's code:
<form action="./?painel" method="post">
<input type="text" name="username" placeholder="Usuário" autofocus autocomplete /><br />
<input type="password" name="password" placeholder="Senha" /><br />
<input type="submit" name="Login" value="Login" />
<div style="height: 5px;"></div>
</form>
I have no idea of what to do.