-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRegForm.html
More file actions
55 lines (42 loc) · 2.05 KB
/
RegForm.html
File metadata and controls
55 lines (42 loc) · 2.05 KB
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
45
46
47
48
49
50
51
52
53
54
55
<html>
<head>
<title>Reggistartion Form</title>
<h1>Registratin Form</h1>
</head>
<body>
<div id="Reg-Form" >
<form action="" method="POST">
<Label >First Name</Label><input type="text" name="First name" id="" placeholder="Enter your First name"><br><br>
<Label >Last Name</Label><input type="text" name="Last Name" id="" placeholder="Enter your Last name">
<div id="">
<Label >male</Label><input type="radio" name="gender-choice" value="male" button-group ="g1">
<Label>Female</Label><input type="radio" name="gender-choice" value="female" button-group ="g1">
</div>
<div id="email">
<Label >E-Mail</Label> <input type="email" name="E-mail" id="">
<Label >Password</Label> <input type="password" name="Password" id="">
</div>
<div>
<Label >Month</Label>
<select name="month" id="">
<option value="0" selected disabled>Month</option>
<option value="">JAN</option>
<option value="">FEB</option>
<option value="">MAR</option>
<option value="">APR</option>
<option value="">MAY</option>
<option value="">JUN</option>
<option value="">JLY</option>
<option value="">AUG</option>
<option value="">SEP</option>
<option value="">OCT</option>
<option value="">NOV</option>
<option value="">DEC</option>
</select>
</div>
<label for="agree" >I agree for all rules</label> <input type="checkbox" name="agree">
<button type="submit" >Submit</button>
</form>
</div>
</body>
</html>