-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
61 lines (44 loc) · 1.58 KB
/
forms.html
File metadata and controls
61 lines (44 loc) · 1.58 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
<!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 type="email" id="email" name="email" placeholder="Enter user email address">
<br>
<br>
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="Enter user password">
<br>
<br>
<label for="bio">Bio</label>
<br>
<br>
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Please give a short self description."></textarea>
<br>
<br>
<label>How did you hear about us?<br>
<input type="radio" name="hear-billboard" value="billboard">Billbooard<br>
<input type="radio" name="hear-radio-ad" value="radio advertisement">Radio Advertisement<br>
<input type="radio" name="hear-net-ad" value="internet advertisement">Internet Advertisement<br>
<input type="radio" name="hear-other" value="other">Other<br>
</label>
<br>
<label for="browser">What browser are you using?
<select name="browser" id="browser">
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="brave">Brave</option>
<option value="other">Other</option>
</select>
<br>
<br>
</label>
<label for="submitbutton"></label>
<input type="submit" value="Submit Responses" name="submitbutton" id="submitbutton">
</form>
</body>
</html>