inputs

The <INPUT> tag is used in forms and allows interaction with the httpd server.

There are several types of input tags:


<input NAME=name [value=string] [Type =type] [SIZE=x,y] [checked] ALIGN=align> Creates an input field in a form. NAME must be present for all types of input except submit and reset

TYPE can be one of


Plain input field
  <form>
    <input NAME="From">
  </form>

text areas
On Xmosaic, the SIZE parameter is interpreted as a textarea. This is ignored in Mosaic for Windoze and proper TEXTAREAS should be used.
This wont work under Windoze
 ROWS=5 COLS=30 ALIGN=middle            
This will work under windoze
<TEXTAREA ROWS=5 COLS=30 ALIGN=middle>            

in Xmosaic, the text is shown within the text area.