-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
63 lines (53 loc) · 2.13 KB
/
forms.html
File metadata and controls
63 lines (53 loc) · 2.13 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
59
60
61
62
63
<!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/">
<section>
<label for="email">Email:</label>
<input id="email" name="email" type="text" placeholder="Enter email here">
<br>
<label for="password">Password:</label>
<input id="password" name="password" type="password" placeholder="Enter password">
</section>
<section>
<label for="bio">bio</label>
<br>
<textarea name="bio" id="bio" cols="30" rows="10" maxlength="100"></textarea>
</section>
<section>
<h4>How did you hear about us</h4>
<!-- <fieldset>-->
<!-- <legend>How did you hear about us</legend>-->
<input type="checkbox" name="hearAboutUs" id="billboard" value="billboard">
<label for="billboard">Billboard</label>
<input type="checkbox" name="hearAboutUs" id="radioAd" value="radio advertisement">
<label for="radioAd">Radio Advertisement</label>
<input type="checkbox" name="hearAboutUs" id="internetAd" value="internet advertisement">
<label for="internetAd">Internet Advertisement</label>
<input type="checkbox" name="hearAboutUs" id="other" value="other">
<label for="other">Other</label>
<!-- </fieldset>-->
</section>
<section>
<h4>
<label for="whatBrowser">What web browser are you using?</label>
</h4>
<select name="whatBrowser" id="whatBrowser">
<option value="safari" selected></option>
<option value="safari">Safari</option>
<option value="fireFox">Firefox</option>
<option value="chrome">Google Chrome</option>
<option value="edge">Microsoft Edge</option>
</select>
</section>
<button type="submit">Submit</button>
</form>
</body>
</html>