Get Creates a form with GET method and specified action URL.
Example: form.Get("/search", form.New())
Renders: <form action="/search" method="get"><form></form></form>
Post Creates a form with POST method and specified action URL.
Example: form.Post("/login", form.New())
Renders: <form action="/login" method="post"><form></form></form>