-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
43 lines (43 loc) · 1.77 KB
/
Copy pathforms.html
File metadata and controls
43 lines (43 loc) · 1.77 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
<!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" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="GET" action="https://request-inspector.glitch.me/">
<input type="text" name="email" id="email" placeholder="email">
<br>
<br>
<input type="password" name="password" id="password" placeholder="password">
<br>
<br>
<label for="bio">Bio:</label><br>
<textarea name="bio" cols=48" rows="5" id="bio"></textarea>
<br>
<br>
<h4>How did you hear about us?</h4>
<label for="billbaord">billboard:</label><input type="checkbox" name="aboutInfo" value="billbaord" id="billbaord"><br>
<label for="radio advertisement">radio advertisement:</label><input type="checkbox" name="aboutInfo" value="radio advertisement" id="radio advertisement"><br>
<label for="internet advertisement">internet advertisement:</label><input type="checkbox" name="aboutInfo" value="internet advertisement" id="internet advertisement"><br>
<label for="other">other:</label><input type="checkbox" name="aboutInfo" value="other" id="other"><br>
<br>
<br>
<h4>What browser are you using?</h4>
<select name="browser">
<option value="chrome">Chrome</option>
<option value="firefox">Firefox</option>
<option value="edge">Edge</option>
<option value="safari">Safari</option>
<option value="other">Other</option>
</select>
<br>
<br>
<br>
<br>
<br>
<input type="submit">
</form>
</body>
</html>