Basic Settings
Access Numbers & Connection Configuration
<form method="post" action="https://www.yourdomain.com/cgi-bin/reqform" />
.
<input type="hidden" name="mailto" value="username@yourdomain.com" />
<input type="hidden" name="subject" value="the subject of the e-mail" />
<input type="submit" value="Submit" />
<input type="reset" value="Reset Form" />
<input type="hidden" name="required_fields" value="field names separated by commas" />
<input type="hidden" name="acknowledge_page" value="https://www.yourdomain.com/acknowledge.html" />
<input type="hidden" name="form_title" value="Title of Form"> <input type="hidden" name="form_fontsize" value="2" /> <input type="hidden" name="form_fontface" value="Arial, Helvetica" /> <input type="hidden" name="form_message" value="Please review the information you entered for accuracy.<br /> If you need to make a correction, click the BACK button. <br /> If the information shown is correct, click the OK button." /> <input type="hidden" name="table_width" value="50%" />
<input type="hidden" name="email_fieldname" value="name of the field that contains the e-mail address" />
<input type="hidden" name="message_from" value="ABC Company" />
<input type="hidden" name="message_subj" value="Thank you message" />
<input type="hidden" name="message_file" value="/thankyou.txt" />
The value
for message_file
should be the full path to the file relative to the Web root.
</form>
<label> <input type="checkbox" value="zucchini" name="plant" checked /> I like zucchini. </label><br /> <label> <input type="checkbox" value="zebra" name="animal" /> I like zebras. </label>
value
is what is returned if the box is checked.name
is how this checkbox will be referenced.checked
is included if the box should start off checked.
<label> <input type="radio" value="Jazz" name="Radio1" /> Jazz </label><br /> <label> <input type="radio" value="New Age" name="Radio1" /> New Age </label><br /> <label> <input type="radio" value="Rock" name="Radio1" checked /> Rock </label>
value
is what is returned if the box is selected.checked
(optional) is the item that starts off selected.name
is how this series of radio buttons will be referenced.<input type="text" value="Kilroy was here." name="text1" size="50" maxlength="70" />
value
(optional) is a default string to be displayed in the text field before the user types anything.name
is how this text field will be referenced.size
(optional) is the amount of display space for the text field.maxlength
(optional) is the length of one line in the text field. If maxlength
is larger than size
then the text field should scroll as necessary.<textarea name="text2" rows=10 cols=50>Type something here.</textarea>
name
is how this text area will be referenced.rows
and cols
define the size of the text area.<input type="password" name="thepassword" />
name
is how this field is referenced.