hi
this is a very simple form - sorry i am not good and check boxes not work properly - please have a look for me you can only check one and not the other line.
check document type
check delivery time
input number of words
select currency
choose source and target languages
click get quote
number of words x curency selected (amount coded i.e. 1 word = 0.10 dollars)
total has this added check delivery time - normal (0%) express (20%)
total has this added check document type - general (0%) others (20%)
output total of quote
details - quote amount
number of words
delivery time
document type
languages
I hope this is ok and clear to understand
many thankyou
Code:
<body>
<p>This is the Instant quote generator form. Please complete the form and click
the "get quote" button</p>
<form method="POST" action="--WEBBOT-SELF--">
<p><strong>What is the document type?</strong></p>
<dl>
<dd><input type="radio" name="MessageType" value="Complaint">Technical
<input type="radio" name="MessageType" value="Problem">Legal
<input type="radio" name="MessageType" value="Suggestion">General
<input type="radio" name="MessageType" value="Praise">Website</dd>
</dl>
<p><strong>What deliver time do you want?</strong></p>
<dl>
<dd><input type="radio" name="MessageType" value="Complaint1">Normal -
72 hours <input type="radio" name="MessageType" value="Problem1">Express
- 48 hours</dd>
<dt> </dt>
<dt><b>How many words?</b></dt>
<dd> </dd>
<dd>Words:
<input type="text" size="26" maxlength="256" name="SubjectOther1"></dd>
</dl>
<p><strong>Select your currency?</strong></p>
<dl>
<dd><select name="Subject1" size="1">
<option selected>RMB</option>
<option>Euro</option>
<option>Dollar</option>
<option>Pound</option>
</select> </dd>
</dl>
<p><strong>What is the source language?</strong></p>
<dl>
<dd><select name="Subject" size="1">
<option selected>English</option>
<option>Chinese(S)</option>
<option>Chinese(T)</option>
<option>Japanese</option>
<option>Korean</option>
<option>(Other)</option>
</select> Other:
<input type="text" size="26" maxlength="256" name="SubjectOther"></dd>
</dl>
<p><strong>What is the target language?</strong></p>
<dl>
<dd><select name="Subject0" size="1">
<option selected>English</option>
<option>Chinese(S)</option>
<option>Chinese(T)</option>
<option>Japanese</option>
<option>Korean</option>
<option>(Other)</option>
</select> Other:
<input type="text" size="26" maxlength="256" name="SubjectOther0"></dd>
</dl>
<p><input type="submit" value="Get Quote">
<input type="reset" value="Clear Form"></p>
</form>
</body>
Bookmarks