-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
60 lines (54 loc) · 2.3 KB
/
forms.html
File metadata and controls
60 lines (54 loc) · 2.3 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
<!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/">
<h3>Please enter your login credentials</h3>
<label for="email">Email</label>
<input type="text" name="email" id="email" placeholder="Enter your email address">
<input type="submit">
<br>
<br>
<label for="password">Password</label>
<input type="password" name="password" id="password">
<input type="submit">
<br>
<br>
<label for="bio">Bio</label>
<textarea name="Bio" id="bio" cols="30" rows="10"></textarea>
<input type="submit">
<br>
<br>
<h3>How Did You Hear About Us?</h3>
<input type="radio" id="hdyhau-a" name="How Did You Hear About Us?" value="billboard"><label for="hdyhau-a">Billboard</label>
<input type="radio" id="hdyhau-b" name="How Did You Hear About Us?" value="radio-advertisement"><label for="hdyhau-b">Radio Advertisement</label>
<input type="radio" id="hdyhau-c" name="How Did You Hear About Us?" value="internet-advertisement"><label for="hdyhau-c">Internet Advertisement</label>
<input type="radio" id="hdyhau-d" name="How Did You Hear About Us?" value="other"><label for="hdyhau-d">Other</label>
<br>
<br>
<h3>Which Two Singers Would You Have Perform At Your Wedding?</h3>
<input type="checkbox" id="option1" name="option1" value="Beyonce">
<label for="option1">Beyonce</label><br>
<input type="checkbox" id="option2" name="option2" value="Mariah Carey">
<label for="option2">Mariah Carey</label><br>
<input type="checkbox" id="option3" name="option3" value="Shakira">
<label for="option3">Shakira</label><br>
<input type="checkbox" id="option4" name="option4" value="Adele">
<label for="option4">Adele</label><br>
<br>
<h3>Which State DOES NOT have repeating letters in it's name?</h3>
<select name="repeating-letters">
<option value="select">Select --</option>
<option value="Texas">Texas</option>
<option value="Arkansas">Arkansas</option>
<option value="Mississippi">Mississippi</option>
<option value="Tennessee">Tennessee</option>
<option value="Should I care?">Should I care?</option>
<br>
<input type="submit">
</select>
</body>
</html>