#How to create Sign UP page
<html>
<head>
<title>WECOME TO REGISTRATION FORM</title>
</head>
<body>
<h2 align="center"> CREATE YOUR ACCOUNT/SIGN UP </h2>
<form action="#">
<table cellspacing="2" align="center" cellpadding="8" border="0" bgcolor="#33FFC4">
<tr>
<td align="right">Enter Name<font color="red">*</font>:</td>
<td><input type="text" placeholder="Enter User Here" required>
</td>
</tr>
<tr>
<td align="right">Enter Class<font color="red">*</font>:</td>
<td><input type="text" placeholder="Enter User Here" required>
</td>
</tr>
<tr>
<td align="right">Enter Father Name<font color="red">*</font>:</td>
<td><input type="text" placeholder="Enter User Here" required>
</td>
</tr>
<tr>
<td align="right">Enter Mother Name<font color="red">*</font>:</td>
<td><input type="text" placeholder="Enter User Here" required>
</td>
</tr>
<tr>
<td align="right">Enter Email Id<font color="red">*</font>:</td>
<td><input type="email" placeholder="Enter User Here" required>
</td>
</tr>
<tr>
<td align="right">Enter Password<font color="red">*</font>:</td>
<td><input type="password" placeholder="Enter User Here" required>
</td></tr>
<tr>
<td align="right">Enter Phone Number<font color="red">*</font>:</td>
<td><input type="number" placeholder="Enter User Here" required>
</td>
</tr>
<tr>
<!--Same Method follow you can enter more field-->
<td align="right"> Gender </font color="red">*</font>:</td>
<td>
<label for="male">Male</label>
<input type="radio" name="gender" value="male" id="male">
<label for="Female">Female</label>
<input type="radio" name="gender" value="female" id="female">
</td></tr>
<tr>
<td align="right"> vehical:</td>
<td>
<label for="car">Car</label>
<input type="checkbox" name="car" value="car" id="car">
<label for="Bike">Bike</label>
<input type="checkbox" name="bike" value="bike" id="bike">
<label for="cycle"> Cycle</label>
<input type="checkbox" name="cycle" value="cycle" id="cycle">
</td>
</tr>
<tr>
<td align="right">
Date Of Birth:<font color="red">*</font>:</td>
<td><input type="Date" required>
</td></tr>
<tr><td align="right">Education<font color="red">*</font>:</td>
<td><select name="Education">
<option value=" ">Education</option>
<option value="8th">8th or bellow 8th or none</option>
<option value="10th">10th </option>
<option value="12th">12th</option>
<!--You can added more classes same coding-->
</select></td></tr>
<tr><td></td><td>
<input type="reset" value="clear form" id="res" class="btn">
<input type="submit" value="create account" class="btn">
</td></tr>
</table>
</form>
</body>
</html>
No comments:
Post a Comment
THANK YOU