Think about a simple Rails scaffold application with a \"new\" action containing a form to add records to a database with a \"save\" button. After the \"create\" action the
Add html: { autocomplete: "off" } in your form_for like this:
html: { autocomplete: "off" }
form_for
<%= form_for @object, url: xxx_path, html: { autocomplete: "off" } do |f| %>