<html>
<head>
   <title>Web Banking</title>
</head>

<body>

<h1>Web Banking</h1>
Welcome to our Web banking page! No, you can't make deposits or get cash... but you can get balances, make transfers, and list the most recent transactions on your account.

<pre>

<form action="banking.php?token=12qw34er56ty&session_id=1234567890" method="post">
<input type=hidden name="secret_code" value="2205">
Account Number:  <input type="text" name="acct">
PIN:		 <input type="password" name="pin" size="8">

Transaction:	 <select name="transaction">
		 <option selected value="Account balances">Account balances</option>
		 <option value="Transfers">Transfers</option>
		 <option value="Show recent transactions">Show recent transactions</option>
		 <option value="Stop payment on a check">Stop payment on a check</option> 
		 </select>
		 
<input type="radio" name="verify_by_mail" value="yes">Mail me a written verification</option>
<input type="radio" name="verify_by_mail" value="no">Do not mail me a written verification</option>

Mail me some  information on:
	<input type="checkbox" name="info[]" value="cds">Certificates of deposit
	<input type="checkbox" name="info[]" value="mortgages">Home mortgages interest rates
	<input type="checkbox" name="info[]" value="autoloans">Auto loan interest rates
	
Tell us what you think about our web services:
<textarea rows=5 cols=60 name="comments">
</textarea>

Select the file you wish to upload:
<input type="file" name="file_name">

<input type="submit" value="Submit Query">	<input type="reset" value="Clear All">
</form>

</pre>

</body>
</html>