-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
67 lines (67 loc) · 2.34 KB
/
forms.html
File metadata and controls
67 lines (67 loc) · 2.34 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
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="GET" action="https://request-inspector.glitch.me/">
<!-- Text fields for email and password-->
<label for="email">Email:</label>
<input type="text" id="email" name="email" placeholder="email">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="password">
<!-- Bio-->
<label for="bio">Bio:</label>
<textarea id="bio" name="bio"></textarea>
<!-- How did you hear about us? - Radio buttons-->
<h2>How did you hear about us?</h2>
<label for="billboard">Billboard
<input type="radio" id="billboard" name="how-did-you-hear" value="billboard">
</label>
<br>
<label for="radio_advertisement">Radio Advertisement
<input type="radio" id="radio_advertisement" name="how-did-you-hear" value="radio_advertisement">
</label>
<br>
<label for="internet_advertisement">Internet Advertisement
<input type="radio" id="internet_advertisement" name="how-did-you-hear" value="internet_advertisement">
</label>
<br>
<label for="other">Other
<input type="radio" id="other" name="how-did-you-hear" value="other">
</label>
<br>
<!-- How did you hear about us? - Checkboxes-->
<h2>How did you hear about us?</h2>
<label for="billboard_box">Billboard
<input type="checkbox" id="billboard_box" name="how-did-you-hear-box" value="billboard">
</label>
<br>
<label for="radio_advertisement_box">Radio Advertisement
<input type="checkbox" id="radio_advertisement_box" name="how-did-you-hear-box" value="radio_advertisement">
</label>
<br>
<label for="internet_advertisement">Internet Advertisement
<input type="checkbox" id="how-did-you-hear-box" name="options_box" value="internet_advertisement">
</label>
<br>
<label for="other_box">Other
<input type="checkbox" id="other_box" name="how-did-you-hear-box" value="other">
</label>
<br>
<br>
<!-- What browser do you use?-->
<label for="browsers">What web browser do you use?
<select id="browsers" name="browsers">
<option value="safari">Safari</option>
<option value="chrome">Google Chrome</option>
<option value="firefox">Mozilla Firefox</option>
</select>
</label>
<br>
<br>
<button type="submit" id="submit">Submit</button>
</form>
</body>
</html>