-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
79 lines (69 loc) · 2.37 KB
/
forms.html
File metadata and controls
79 lines (69 loc) · 2.37 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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>
<link rel="stylesheet" href="css/forms.css">
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<fieldset>
<legend>Account Information</legend>
<label for="email">
<span>Email: </span>
<input type="email" id="email" name="email" placeholder="Email" required>
</label>
<br>
<label for="password">
<span>Password:</span>
<input type="password" id="password" name="password" placeholder="Password" required>
</label>
<br>
</fieldset>
<label>
<h3>Bio</h3>
<textarea name="bio" typeof="text">
</textarea>
</label>
<fieldset>
<legend>Tell Us</legend>
<section>
<h2>How did you hear about us?</h2>
<label for="billboard">
<input type="checkbox" id="billboard" name="marketing_option" value="bb">
<span>billboard</span>
</label>
<label for="radio_adv">
<input type="checkbox" id="radio_adv" name="marketing_option" value="ra">
<span>radio advertisement</span>
</label>
<label for="internet_adv">
<input type="checkbox" id="internet_adv" name="marketing_option" value="ia">
<span>internet advertisement</span>
</label>
<label for="other">
<input type="checkbox" id="other" name="marketing_option" value="other">
<span>other</span>
</label>
</section>
</fieldset>
<fieldset>
<legend>Web Browser</legend>
<section>
<h2>What web browser are you using?</h2>
<select name="browser_option">
<option value="gg">Google Chrome</option>
<option value="ff">Fire Fox</option>
<option value="sf">Safari</option>
<option value="ot">Other</option>
</select>
</section>
</fieldset>
<br>
<button>Register</button>
</form>
</body>
</html>