-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
45 lines (44 loc) · 1.6 KB
/
Copy pathforms.html
File metadata and controls
45 lines (44 loc) · 1.6 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
<!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="Enter your email">
<br>
<label for="password"> Password:</label>
<input type="password" id="password" name="password" placeholder="Enter password here">
<br>
<label for="bio">Bio: </label>
<textarea name="bio" id="bio" cols="30" rows="10"></textarea>
<br>
<h2>How did you hear about us?</h2>
<label for="billboard">Billboard:</label>
<input type="radio" id="billboard" name="donkey" value="billboard">
<br>
<label for="radio advertisement"> Radio Advertisement: </label>
<input type="radio" id="radio advertisement" name="horse" value="radio advertisement">
<br>
<label for="internet advertisement">Internet Advertisement:</label>
<input type="radio" id="internet advertisement" name="pig" value="internet advertisement">
<br>
<label for="other">Other:</label>
<input type="radio" id="other" name="sheep" value="other">
<br>
<label for="browser">Web Browser</label>
<select id="browser" name="browser">
<option value="chrome">Chrome Browser</option>
<option value="safari">Safari Browser</option>
<option value="firefox">Firefox</option>
<option value="tor">Tor</option>
<option value="brave">Brave</option>
<option value="other">Other</option>
</select>
<br>
<button>Register</button>
</form>
</body>
</html>