# File lib/Borges/HTML/HtmlBuilder.rb, line 116
  def input(input_type, name = nil, value = nil)
    unless name.nil? then
      @attributes['name'] = name
    end

    unless value.nil? then
      @attributes['value'] = value
    end
      
    @attributes['type'] = input_type
    
    tag('input')
  end