-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
62 lines (52 loc) · 2.09 KB
/
forms.html
File metadata and controls
62 lines (52 loc) · 2.09 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
54
55
56
57
58
<!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/">
<br>
<label for="email">Email</label>
<input id="email" name="Email" type="text" placeholder="Please enter email here.">
<br>
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="Please enter the password here.">
<br>
<label for="bio">Bio</label>
<br>
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Tell me about yourself"></textarea>
<br>
<p>How did you hear about us?</p>
<label for="a">billboard</label>
<input type="radio" name="a" id="a" value="billboard"><br>
<label for="b">radio advertisement</label>
<input type="radio" name="a" id="b" value="radio advertisement"><br>
<label for="c">internet advertisement</label>
<input type="radio" name="a" id="c" value="internet advertisement"><br>
<label for="d">Other</label>
<input type="radio" name="a" id="d" value="other"><br>
<p>How did you hear about us?</p>
<label for="1">billboard</label>
<input type="checkbox" name="1" id="1" value="billboard"><br>
<label for="2">radio advertisement</label>
<input type="checkbox" name="2" id="2" value="radio advertisement"><br>
<label for="3">internet advertisement</label>
<input type="checkbox" name="3" id="3" value="internet advertisement"><br>
<label for="4">Other</label>
<input type="checkbox" name="4" id="4" value="other"><br>
<label for="browser">What browser are you using?</label>
<select name="browser" id="browser">
<option value="google">Google</option>
<option value="safari">Safari</option>
<option value="firefox">Mozilla Firefox</option>
</select>
<br>
<input type="submit">
</form>
</body>
</html>