-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
44 lines (34 loc) · 1.71 KB
/
forms.html
File metadata and controls
44 lines (34 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Forms</title>
</head>
<body>
<h1>Register With us!</h1>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="email">Email</label>
<input type="text" id="email" name="email" placeholder="Enter your email"><br>
<label for="password">Create a Password</label>
<input type="password" name="password" id="password" placeholder="*********"><br><br>
<label for="bio">This is for the user to fill out a short description of themselves</label><br>
<textarea placeholder= "bio" name="bio" id="bio"></textarea>
<p>How did your hear about us?</p>
<label for="billboard">billboard</label>
<input type="checkbox" name="hear" id="billboard" value="billboard"><br>
<label for="radio advertisement">radio advertisement</label>
<input type="checkbox" name="hear" id="radio advertisement" value="radio advertisement"><br>
<label for="internet advertisement">internet advertisement</label>
<input type="checkbox" name="hear" id="internet advertisement" value="internet advertisement"><br>
<label for="other">other</label>
<input type="checkbox" name="hear" id="other" value="other"><br><br>
<label for="Internet browser">What Browser are you on?</label><br>
<select name="Internet browser" id="Internet browser">
<option value="Firefox">Firefox</option>
<option value="Chrome">Chrome</option>
<option value="Safari">Safari</option>
</select>
<br><button type="submit">Submit</button><br>
</form>
</body>
</html>