# File lib/ramaze/helper/form.rb, line 32
      def form_submit(value = nil)
        hash = {:type => :submit}.merge(form_tabindex)
        hash[:value] = value if value
        Ramaze::Gestalt.build{ tr{ td(:colspan => 2){ input(hash) }}}
      end