-
Notifications
You must be signed in to change notification settings - Fork 0
/
from.html
37 lines (31 loc) · 1.11 KB
/
from.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="/login">
<label for="email">Email</label>
<input type="email" name="email" ><br><br>
<label for="password"> password</label>
<input type="password" name="=password">;<br><br>
<label for="Gender">Gender</label><br><br>
<label for="male">Male</label>
<input type="radio" name="Gender" value="male"><br><br>
<label for="female">female</label>
<input type="radio" name="Gender" value="female"><br><br>
<label for="age">Age group</label>
<input type="range" value="15-18">
<input type="range" value="18-25">
<input type="range" value="25-30">
<button type="reset">Reset</button>
<label for="joining">want to join </label>
<select name="joining" id="joining">
<option value="yes">yes</option>
<option value="no">No</option>
</select>
</form>
</body>
</html>