-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
64 lines (48 loc) · 1.65 KB
/
forms.html
File metadata and controls
64 lines (48 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for ="username">UserName</label>
<input id="username" name="username" type="text">
<br>
<label for ="password">Password</label>
<input id="password" name="password" type="password">
<br>
<label for="bio">
<textarea id="bio" name="bio"></textarea>
</label >
<br>
<h2>How did you hear about us?</h2>
<label for="billboard">Billboard</label>
<input id ="billboard" type="radio" name="billboard"
value="billboard">
<label for="radio_advertisement"> Radio Advertisement
<input id="radio_advertisement" type="radio" name="radio" value="radio_advertisement">
</label>
<br>
<label for="internet_advertisement">Internet Advertisement
<input id="internet_advertisement" type="radio" name="internet" value="internet_advertisement">
</label><br>
<label for="other">Other
<input id="other" type="radio" name="other" value="other">
</label>
<br>
<label for="options">Web Browser of Choice
<select id="options" name="web_browser">
<option value="firefox">Firefox</optio>
<option value="chrome">Chrome</option>
<option value="edge">edge</option>
<option value="safari">Safari</option>
</select>
</label>
<br>
<label for="submit_button">
<button id="submit_button" type="submit">Submit the form</button>
</label>
</form>
</body>
</html>