-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform-debug.html
More file actions
98 lines (82 loc) · 3.15 KB
/
form-debug.html
File metadata and controls
98 lines (82 loc) · 3.15 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Debug Form Practice</title>
</head>
<body>
<h1>Please Sign Up</h1>
<form method="POST" action="https://http-inspector.glitch.me/">
<label for="username">Username</label>
<input id="username" type="text" name="username">
<br>
<!--Added email for type and name so emails could be collected on backend-->
<label for="email">Email</label>
<input id="email" type="email" name="email">
<br>
<!--changed type to password in both password and confirm password-->
<label for="password">password</label>
<input id="password" type="password" name="password">
<br>
<label for="confirm_password">confirm password</label>
<input id="confirm_password" type="password" name="confirm_password">
<br>
<h2>Filing Status</h2>
<!--Added label for values and id's in inputs-->
<label for="filing_status">
<input type="radio" id="filing_status" name="filing_status" value="single">
Single
</label>
<br>
<label for="married_joint">
<input type="radio" id="married_joint" name="filing_status" value="married_joint">
Married Filing Jointly
</label>
<br>
<label for="married_separate">
<input type="radio" id="married_separate" name="filing_status" value="married_separate">
Married Filing Separately
</label>
<br>
<label for="hoh">
<input type="radio" id="hoh" name="filing_status" value="hoh">
Head of Household
</label>
<br>
<h2>This past year I was (check all that apply)</h2>
<!--Added label for value and added id's in inputs-->
<label for="self_employed">
<input type="checkbox" id="self_employed" name="employment_status[]" value="self_employed">
Self - Employed
</label>
<br>
<label for="small_business">
<input type="checkbox" id="small_business" name="employment_status[]" value="small_business">
Employed by a small business (< 50 employees)
</label>
<br>
<label for="large_business">
<input type="checkbox" id="large_business" name="employment_status[]" value="large_business">
Employed by a large business (> 50 employees)
</label>
<br>
<h2>What kind of phone do you have</h2>
<!--Swapped option and selects-->
<select name="phone type">
<option value="android">Android</option>
<option value="iphone">iPhone</option>
<option value="windows">Windows Phone</option>
<option value="other">Other</option>
</select>
<hr>
<!--added default checked box-->
<label for="newsletter">Sign Me Up For The Newsletter
<input type="checkbox" name="newsletter" id="newsletter" checked>
</label>
<!--added submit button-->
<p>
<button type="submit">Submit</button>
</p>
</form>
</body>
</html>