-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
42 lines (37 loc) · 1.53 KB
/
forms.html
File metadata and controls
42 lines (37 loc) · 1.53 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
<!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="email">Email: </label>
<input id="email" name="email" type="text" placeholder="type email">
<br>
<label for="password">Password: </label>
<input id="password" name="password" type="password" placeholder="type password">
<br> <br>
<label for="bio">Bio: </label> <br>
<textarea id="bio" name="bio" cols="40" rows="10"></textarea>
<br> <br>
<label>How Did You Hear About Us?</label> <br>
<label><input type="checkbox" name="aware" value="billboards">Billboards</label><br>
<lable><input type="checkbox" name="aware" value="radio advertisement">Radio Advertisements</lable><br>
<label><input type="checkbox" name="aware" value="internet advertisement">Internet Advertisements</label><br>
<label><input type="checkbox" name="aware" value="other">Other</label> <br>
<br>
<label for="browser">Which Internet Browser Do You Use?</label>
<select name="browser" id="browser">
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="edge">Microsoft Edge</option>
<option value="opera">Opera</option>
<option value="safari">Safari</option>
</select>
<br>
<br>
<input type="submit">
</form>
</body>
</html>