-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
53 lines (50 loc) · 1.85 KB
/
forms.html
File metadata and controls
53 lines (50 loc) · 1.85 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Register With Us</title>
</head>
<body>
<form method="GET" action="https://request-inspector.glitch.me/">
<label for="email">Email</label>
<input id="email" name="email" type="text" placeholder="Email">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="password">
<br>
<label for="bio">Bio</label>
<br>
<textarea name="bio" placeholder="Tell us about yourself" id="bio"></textarea>
<br>
<label>How did you hear about us?</label>
<br>
<label for="billboard">Billboard</label>
<input type="radio" name="billboard advertisement" id="billboard" value="billboard">
<br>
<label for="radio advertisement">Radio Advertisement</label>
<input type="radio" name="radio advertisement" id="radio advertisement" value="radio advertisement">
<br>
<label for="internet advertisement">InternetAdvertisement</label>
<input type="radio" name="internet advertisement" id="internet advertisement" value="internet advertisement">
<br>
<label for="other">Other</label>
<input type="radio" name="other" id="other" value="other">
<br>
<label for="browser">Select a Web Browser</label>
<br>
<select name="browser" id="browser">
<option value="chrome">Google Chrome</option>
<option value="safari">Safari</option>
<option value="fox">Firefox</option>
<option value="edge">Microsoft Edge</option>
<option value="brave">Brave</option>
</select>
<br>
<br>
<button type="submit">Register</button>
</form>
</body>
</html>