-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
41 lines (41 loc) · 1.65 KB
/
forms.html
File metadata and controls
41 lines (41 loc) · 1.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forms</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<h1>Register With Us</h1>
<label for="email">Email:</label>
<input type="text" id="email" name="email">
<br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<br><br>
<h2><label for="bio">Bio:</label></h2>
<textarea name="bio" id="bio" cols="48" rows="10"></textarea>
<br><br>
<h4>How did you hear about us?</h4>
<label for="billboard">Billboard:</label>
<input type="radio" name="how" value="billboard" id="billboard"><br>
<label for="radioAdvertisement">Radio Advertisement:</label>
<input type="radio" name="how" value="radioAdvertisement" id="radioAdvertisement"><br>
<label for="internetAdvertisement">Internet Advertisement:</label>
<input type="radio" name="how" value="internetAdvertisement" id="internetAdvertisement"><br>
<label for="other">Other:</label>
<input type="radio" name="how" value="other" id="other"><br>
<br><br>
<h4><label for="webBrowser">What web browser are you using?</label></h4>
<select name="webBrowser" id="webBrowser">
<option value="Google">Google Chrome</option>
<option value="FireFox">FireFox</option>
<option value="Safari">Safari</option>
<option value="DuckDuckGo">DuckDuckGo</option>
<option value="Other">Other</option>
</select>
<br><br>
<input type="submit">
</form>
</body>
</html>