<t:form>

Writes an HTML form element, including a method and URL depending on the type and method attributes. The type is added to the current URL for all sub elements, so they can determine easily whether they are included in an active form.

Attributes

type
A type constant determining the request type and URL for the form. The request URL is constructed by prefixing the type with "get-" or "post-", depending on the method, and appending ".html".
method
Determines the request method used to submit the form. May be POST or GET. If omitted, the default value is GET if the type is query, POST otherwise.