# File lib/ramaze/helper/blue_form.rb, line 76
        def input_password(label, name)
          id = id_for(name)
          args = {:type => :password, :name => name, :class => 'text', :id => id}

          @g.p do
            label_for(id, label, name)
            @g.input(args)
          end
        end