Categories: Asp.net
Tags:

You can download the code taught in 22-Nov-2024 Class here


<!doctype HTML>
<html>
	<head>
		<title>User Signup Page</title>
	</head>

	<body>
	<h2> User Signup Page </h2>
	<!-- Creating User Signup Form -->
	<!-- attribute -->
	<form>
		<label>Username</label>
		<input type="text" name="uname" id="uname">
		<br>
		<br>
		
		<label>Email</label>
		<input type="email" name="uemail" id="uemail">
		<br>
		<br>
		
		<label>Password</label>
		<input type="password" name="upwd" id="upwd">
		<br>
		<br>
		
		
		<br>	
		<label>Gender</label> <br>
		<input type="radio" name="gender" id="gender" value="female"> Female <br>
		<input type="radio" name="gender" id="gender" value="male"> Male <br>
		<input type="radio" name="gender" id="gender" value="other"> Other <br>
		<hr>
	
		<br>	
		<label>Hobbies</label> <br>
		<input type="checkbox" name="hobby1" id="hobby1" value="cricket"> cricket <br>
		<input type="checkbox" name="hobby2" id="hobby2" value="books"> books <br>
		<input type="checkbox" name="hobby3" id="hobby3" value="travel"> travel <br>
		<br>
		<hr>
		
		<br>	
		<label>Select City</label> <br>
		<select name="city">
			<option value="Lucknow">Lucknow</option>
			<option value="Sitapur">Sitapur</option>
			<option value="Hardoi">Hardoi</option>
		</select>
		<br>
		<hr>
		
		<label>Do you agree to terms and conditions 
		<a href="terms.html"> Click here </a> </label>
	
		
		<input type="checkbox" name="terms" id="terms">
		
		<br>
		
		<input type="submit" name="submit" value="Slidescope">
		
	
	</form>
	
	</body>
</html>