# File lib/mongrel_config/win32_app.rb, line 206
    def install_form
      div do
        h2 { "Install New Mongrel Service" }
        p { "Items with an * are mandatory.  Leave an item blank to not specify it." }
        form :action=>"/install", :method=>"POST" do
          b { "* Service Name: "}; input :name => "service_name"; br
          b { "* Root: "}; input :name => "root"; br
          b { "* Environment: "}; input :name => "environment", :value => "development"; br
          b { "*Address: "}; input :name => "address", :value => "0.0.0.0"; br
          b { "*Port: "}; input :name => "port", :value => "4000", :size => 6; br
          b { "Display Name: "}; input :name => "display_name"; br
          b { "MIME Map File: "};  input :name => "mime"; br
          b { "Number Processor Threads: "}; input :name => "num_procs", :size => 3; br
          b { "Request Timeout: "}; input :name => "timeout", :size => 3; br
          b { "Assigned CPU: " }; input :name => "cpu", :size => 2; br

          p { input :type=>"submit", :value => "INSTALL" }
        end
      end
    end