# File lib/Borges/HTML/HtmlRenderer.rb, line 247
  def submit_button(label = 'Submit', &block)
    @attributes[:value] = label

    if block then
      input :submit, @callbacks.register_action_callback(&block)
    else
      input :submit
    end
  end