-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
41 lines (34 loc) · 1.12 KB
/
forms.html
File metadata and controls
41 lines (34 loc) · 1.12 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" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form action="https://request-inspector.glitch.me/" method="POST">
<label for="email">Email:</label>
<input id="email" name="email" type="text">
<br><br>
<label for="password">Password:</label>
<input id="password" name="password" type="password">
<br><br>
<textarea name="bio">Enter your bio info:</textarea>
<br><br>
How did you hear about us:
<br>
Billboard <input type="checkbox" name="billboard" value="a"><br>
Radio Advertisement <input type="checkbox" name="radio advertisement" value="b"><br>
Internet Advertisement <input type="checkbox" name="internet advertisement" value="c"><br>
Other <input type="checkbox" name="other" value="d"><br>
<br>
What is your favorite web browser?
<select name="What is your favorite web browser">
<option value="Mozilla">Firefox</option>
<option value="Google">Chrome</option>
<option value="Other">Other</option>
</select>
<br> <br>
<input type="submit">
</form>
</body>
</html>