The <input> Element

Purpose

The <input> element ...

Attributes

NameTypeDescription
name NMTOKEN Required - Specifies the HTTP parameter name.
array true|false Set to true for an array input.
relax CDATA Dynamic - A boolean expression (without leading '${' and trailing '}'); if specified, the expression will be evaluated when validating the input has failed. If it evaluates to true, no error message will be generated. However, the form is still invalid.
ignore CDATA Dynamic - A boolean expression (without leading '${' and trailing '}'); if specified, the expression will be evaluated before validating the input. If it evaluates to true, validation will be skipped for that input. If a form is valid or not does not depend on ignored inputs.

Body

The body of the <input> element is defined by the following sequence:

(field+, message?)

Related elements

<field>, <message>