-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
47 lines (46 loc) · 1.67 KB
/
forms.html
File metadata and controls
47 lines (46 loc) · 1.67 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
<!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="text" id="email" name="email" placeholder="example@email.com">
<label for="password">Password:</label>
<input type="password" id="password" name="password"
placeholder="Enter Password">
<br>
<label for="bio">Bio:</label>
<textarea name="bio" id="bio" cols="30" rows="10"
placeholder="Tell us a little about yourself."></textarea>
<br>
<label>How did you hear about us?</label>
<label for="billboard">Billboard</label>
<input type="radio" name="hear" id="billboard"
value="billboard">
<label for="radio-advertisemnet">Radio Advertisement</label>
<input type="radio" name="hear" id="radio-advertisemnet"
value="radio advertisement">
<label for="internet-advertisement">Internet Advertisement</label>
<input type="radio" name="hear" id="internet-advertisement"
value="internet advertisement">
<label for="other">Other</label>
<input type="radio" name="other" id="other" value="other">
<br>
<label for="browser">Browser:</label>
<select name="browser" id="browser">
<option value="chrome">Google Chrome</option>
<option value="safari">Safari</option>
<option value="firefox">Firefox</option>
<option value="edge">Microsoft Edge</option>
<option value="tor">Tor</option>
<option value="brave">Brave</option>
<option value="other">Other...</option>
</select>
<br>
<button>Register</button>
</form>
</body>
</html>