In order to prevent the browser from asking whether to remember the password, give a form an autocomplete attribute with the value off:
autocomplete
off
Copy<form "/session" method="post" autocomplete="off"> ... </form>
<form "/session" method="post" autocomplete="off"> ... </form>
Copyform_for @model, :html => { :autocomplete => "off" } do |form|
form_for @model, :html => { :autocomplete => "off" } do |form|