Rails: how can I force no value for a form_for text field for a model that has that field populated?

459 Views Asked by At

I have this form:

=form_for @current_user, :url => update_password_path do |f|
    %label{:for => ""} * New Password
    =f.password_field :password, :value => ""

But when the current user has a password, this field is populated on the page despite the :value => ""

How can I force this field blank on the page and still use form_for?

1

There are 1 best solutions below

0
On
password_field_tag "user[password]", ""