<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Insert title here</title>
</head>
<body>
<form action="something" method="get" id="form"
enctype="multipart/form-data">
<input type="hidden" name="date" value="20080809" />
<table>
<tr>
<td>User name:</td>
<td><input name="username" type="text" size="50"
id="input_username" /></td>
<td>Password:</td>
<td><input id="input_password" name="password" size="50"
type="password" /></td>
</tr>
<tr>
<td>Description:</td>
<td><textarea cols="10" rows="3" name="description"
id="input_description">Some text</textarea></td>
<td>Credit card:</td>
<td><input type="radio" name="credit" value="Mastercard" checked="checked"
id="credit_mastercard" /> Mastercard <input type="radio"
name="credit" value="Visa" id="credit_visa" /> Visa <input
type="radio" name="credit" value="AmericanExpress"
id="credit_american" /> American Express</td>
</tr>
<tr>
<td>Artists:</td>
<td><select name="top5" size="3" multiple="multiple">
<option>Heino</option>
<option>Michael Jackson</option>
<option>Tom Waits</option>
<option>Nina Hagen</option>
<option>Marianne Rosenberg</option>
</select></td>
<td>More Artists</td>
<td><select name="top3" size="1">
<option>Prince</option>
<option>Wired Al</option>
<option>R.E.M.</option>
<option>Red Hot chilli Peppers</option>
<option>Wham</option>
</select></td>
</tr>
<tr>
<td>File upload:</td>
<td><input name="file" type="file" size="50" maxlength="100000"
accept="text/*" value="Search" />
</td>
<td>Topping:</td>
<td><input type="checkbox" name="zutat" value="salami" />
Salami
<input type="checkbox" name="zutat" value="funghi" />
Mushrooms
<input type="checkbox" name="zutat" value="anchovi" />
Anchovi</td>
</tr>
<tr>
<td><input type="submit" value=" Save " /></td>
<td><input type="reset" value=" Cancel" /></td>
<td></td>
<td></td>
</tr>
</table>
</form>
</body>
</html>