-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
52 lines (43 loc) · 1.73 KB
/
forms.html
File metadata and controls
52 lines (43 loc) · 1.73 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
<!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="POST" action="https://request-inspector.glitch.me/">
<h2>Registration Form</h2>
<label for="email">Email</label>
<input id="email" name="email" type="text" placeholder="Enter your email">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="Enter your password">
<br>
<label for="bio"></label>
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Tell us about yourself. Use this space to enter your bio"></textarea>
<hr>
<h2>How did you hear about us?</h2>
<label for="billboard">Billboard</label>
<input type="checkbox" name="billboard" id="billboard" value="billboard">
<label for="radio">Radio Advertisement</label>
<input type="checkbox" name="radio" id="radio" value="radio">
<label for="internet">Internet Advertisement</label>
<input type="checkbox" name="internet" id="internet" value="internet">
<label for="other">Other</label>
<input type="checkbox" name="other" id="other" value="other">
<br>
<h2>What browser do you use?</h2>
<select name="browser" id="browser">
<option value="Chrome">Chrome</option>
<option value="Safari">Safari</option>
<option value="FireFox">FireFox</option>
<option value="Internet Explorer">Internet Explorer</option>
<option value="Other">Other</option></select>
<hr>
<button>Submit</button>
</form>
</body>
</html>