HtmlElement: FormElementBase & {
    defaultValue: string;
    type: "html";
}

Display information to the user. Also know as the "Information Form Element"

Type declaration

  • defaultValue: string

    Also know as the "Information Form Element"

    This value should be valid HTML. It will be displayed to users when completing the form.

    The label property will not be displayed on the form.

    Other form element's values can be injected into the HTML using the following syntax: {ELEMENT:elementName}. The elementName part must match the name property of an element on the form.

  • type: "html"