# File lib/merb_helpers/form_helpers.rb, line 223 def password_field(attrs = {}) attrs.delete(:value) attrs.merge!(:type => 'password') attrs.add_html_class!("password") optional_label(attrs) { self_closing_tag("input", attrs) } end