-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog in
More file actions
40 lines (38 loc) · 1.84 KB
/
log in
File metadata and controls
40 lines (38 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Log In</title>
<h1>Survey</h1>
</head>
<body>
<form action="http://www.example.com/profile.php">
<p>Please select your favorite genre:
<br />
<input type="radio" name="genre" value="Rock" checked="checked"/>Rock
<input type="radio" name="genre" value="Pop" checked="checked"/>Pop
<input type="radio" name="genre" value="Jazz" checked="checked"/> Jazz
<input type="radio" name="genre" value="OPM" checked="checked"/>OPM
<p>if others please specify here:</p>
<form action="http://www.example.com/comments.php">
<textarea name="comments" cols="20" rows="1">Enter here</textarea>
</form>
<form action="http://www.example.com/profile.php">
<p>Please select your Music Platform
<br />
<input type="checkbox" name="service" value="iTunes" checked="checked"/>iTunes
<input type="checkbox" name="service" value="Spotify" checked="checked"/>Spotify
<input type="checkbox" name="service" value="Illegal" checked="checked"/>Illegal site
</p>
</form>
<form action="http://www.example.com/profile.php">
<p>What device do you use for listening?</p>
<select name="devices">
<option value="ipod">iPod</option>
<option value="phone">Phone</option>
<option value="laptop">Laptop</option>
<option value="desktop">Desktop</option>
</select>
</form>
</form>
</body>
</html>