User Registration
<! DOCTYPE HTML PUBLIC "-//w3c//dtd HTML 4.01 transitional//en" "Http://www.w3.org/TR/html4/loose.dtd" ><html><head> <meta http-equiv="Content-type" Content="text/html; Charset=utf-8 "> <title>User Registration</title></head><body> <h2>User Registration</H2> <form Action= " method="post "> <!--hidden fields -- <input type="hidden" name="UID" value= "9527" /> <table Border="0" cellpadding= "0" cellspacing="0 " width=" 400px "> <tr> <TD Align="Right"><label for ="name">Name:</label></td> <TD><input type="text" name= "name " id="Name" /></td> </tr> <tr> <TD Align="Right">User name:</td> <TD><input type="text" name= "username"readonly=" ReadOnly " value=" Tom "/> </td> </tr> <tr> <TD Align="Right">Password:</td> <TD><input type="password" name="pwd"/></td> </tr> <tr> <TD Align="Right">Confirm Password:</td> <TD><input type="password" name="repwd"/></td> </tr> <tr> <TD Align="Right">E-Mail:</td> <TD><input type="text" name="email"/></td> </tr> <tr> <TD Align="Right">Gender:</td> <TD> <input type="Radio" name="Sex" value= "Male" checked="Checked" id="male" /> <label for ="male"><img src="Images/male.gif"/>Man</label> <input type="Radio" name="Sex" value= "female"/> <img src="Images/female.gif"/>Woman</td> </tr> <tr> <TD Align="Right">Avatar:</td> <TD><input type="file" name="Touxiang"/></td> </tr> <tr> <TD Align="Right">Hobby:</td> <TD> <input type="checkbox" name="Hobby" value ="Eat" checked="Checked" />Dining <input type="checkbox" name= "hobby" value="sleep " />Sleeping <input type="checkbox" name="Hobby" value= "Doudou" />Hit the peas </td> </tr> <tr> <TD Align="Right">Date of birth:</td> <TD> <input type="text" name="Year" size= "Ten"/>Year <Select name="month"> <option value="0" selected= "selected">--month--</option> <option value="1">January</option> <option value="2">February</option> <option value="3">March</option> <option value="4">April</option> <option value="6">June</option> </Select>Monthly <input type="text" name="Day" size="6"/> Day</td> </tr> <tr> <TD Align="Right">Registration Agreement:</td> <TD> <textarea rows="4" cols= " name" = "intr" readonly="readonly">Please observe the relevant laws and regulations ...</textarea> </td> </tr> <tr> <TD></td> <TD> <input type="Submit" value="register" disabled=" Disabled " /> <input type="image" src="Images/reset.gif" /> <!--<input type= "button" value= "normal button"/> --</td> </tr> </table> </form></body></html>
HTML5-User Registration Form