-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
51 lines (35 loc) · 1.29 KB
/
forms.html
File metadata and controls
51 lines (35 loc) · 1.29 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
<!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>Email
<input type="email" name="email" placeholder="Email">
</label>
<br>
<label> Password
<input type="password" name="password" placeholder="Enter Password">
</label>
<br><br>
<textarea name="textArea" placeholder=" bio"></textarea>
<h2>How did you hear about us?</h2>
Billboard<input type="radio" name="how_did_you_hear_about_us" value="billboard">
Radio Advertisement <input type="radio" name="how_did_you_hear_about_us" value="Radio Ad">
Internet Advertisement <input type="radio" name="how_did_you_hear_about_us" value="Internet Ad">
Other <input type="radio" name="how_did_you_hear_about_us" value="Other">
<br>
<h3>What's your prefered Internet browser?</h3>
<select name="What your internet browser?" >
<option value="Google Chrome">Google Chrome</option>
<option value="Mozilla Firefox">Firefox</option>
<option value="Safari">Safari</option>
<option value="Internet Explorer">IE</option>
</select>
<br><br>
<input type="Submit">
</form>
</body>
</html>