-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshrawani_form
45 lines (35 loc) · 1.46 KB
/
shrawani_form
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<title>Registration form</title>
<link rel="stylesheet" type="text/css" href="registration_form.css">
</head>
<body>
<h1>Registration form</h1>
<div align="center" class="register" style="background-color: pink; width:500px margin: 0px 0px 0px 430px;>
<form method="post" id="register" action="">
<h2>Register here</h2>
<label>First Name</label><br>
<input type="text" name="Fname" id="name" placeholder="Enter ur First name"><br><br>
<label>Last Name</label><br>
<input type="text" name="Lname" id="name" placeholder="Enter ur Last name"><br><br>
<label>Mobile Number</label><br>
<select id="ph">
<option>+91</option>
<option>+92</option>
</select>
<input type="number" name="MNum" id="number" placeholder="Enter ur Mobile Number "><br><br><br>
<label>Email</label><br>
<input type="Email" name=" id="name" placeholder="Enter ur Email"><br><br>
<label>password</label><br>
<input type="password" name="pass" ="name" placeholder="Enter ur password"><br><br>
<label>Re enter U R password</label><br>
<input type="password" name="pass" id="name" placeholder="Enter ur password"><br><br>
<input type="radio" name="male"><span id="male"> Male</span>
<input type="radio" name="Fe male"><span id="Fe male"> Fe male</span>
<input type="radio" name="other"><span id="other"> other</span> <br><br>
<input type="submit" value="submit" id="submit">
</form>
</div>
</body>
</html>