-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
33 lines (30 loc) · 1.56 KB
/
forms.html
File metadata and controls
33 lines (30 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html"
xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Register with us</title>
</head>
<body>
<form METHOD="POST" action="https://request-inspector.glitch.me/">
<label for="pwSample">Sample Password</label>
<input type="password" name="password" id="pwSample" placeholder="Enter Password">
<label for="username">Username</label>
<input id="username" name="username" type="text" placeholder="Enter Username">
<label for="bioSample">Bio</label><br>
<textarea name="bio" id="bioSample" cols="30" placeholder="Tell us about yourself!" rows="10"></textarea>
<h3>How did you hear about us?</h3>
<input type="radio" name="Question1" id="Question1"><label for="Question1">Billboard</label><br>
<input type="radio" name="Question2" id="Question2"><label for="Question2">Radio Advertisement</label><br>
<input type="radio" name="Question3" id="Question3"><label for="Question3">Internet Advertisement</label><br>
<input type="radio" name="Question4" id="Question4"><label for="Question4">Other</label><br>
<label for="web select">What web browser are you using?</label>
<select name="web browser" id="web select">
<option value="Google">Google</option>
<option value="Firefox">Firefox</option>
<option value="Bing">Bing</option>
</select><br>
<button>Submit form</button>
</form>
</body>
</html>