-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
34 lines (29 loc) · 1.33 KB
/
forms.html
File metadata and controls
34 lines (29 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="email">Email<input type="text" id="email" name="email" placeholder="Enter your email address"><br></label>
<label for="password">Password<input type="password" id="password" name="password" placeholder="password"><br></label><br><br>
<label for="bio">Bio<textarea id="bio" name="bio"></textarea><br></label><br><br>
<label><h3>How did you hear about us?</h3>
Billboard <input type="checkbox" name="howDidYouHear" value="billboard"><br>
Radio advertisement <input type="checkbox" name="howDidYouHear" value="radio advertisement"><br>
Internet advertisement <input type="checkbox" name="howDidYouHear" value="internet advertisement"><br>
Other <input type="checkbox" name="howDidYouHear" value="other"><br>
</label><br><br>
<label>Which Browser are you using?
<select name="browser">
<option value="firefox">firefox</option>
<option value="chrome">chrome</option>
<option value="safari">safari</option>
<option value="edge">Edge</option>
</select>
</label><br><br><br>
<button type="submit">Submit the form</button>
</form>
</body>
</html>