Switch to edit mode.
Name(s): input_text input_password1: "Returns an HTML form text/password field built as follows:" 2: ":input_text(name [,value] [,size] [,maxlength])" 3: ":input_password(name [,value] [,size] [,maxlength])" 4: {name, ?value = "", ?size = "", ?maxlength = ""} = args 5: type = verb[7..$] 6: return tostr("<INPUT TYPE=\"", type, "\" NAME=\"", this:literal_text(name), "\" VALUE=\"", this:literal_text(value), "\"", size ? tostr(" SIZE=\"", size, "\"") | "", maxlength ? tostr(" MAXLENGTH=\"", maxlength, "\"") | "", ">") 7: "Last modified by Dax (#789) on Fri Jul 28 06:27:33 2000 MDT."