-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
47 lines (44 loc) · 2.17 KB
/
forms.html
File metadata and controls
47 lines (44 loc) · 2.17 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>Register With US</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<fieldset>
<legend>Personal Information</legend>
<label for="email">Email</label><br>
<input type="text" name="email" id="email" placeholder="Enter Email" required><br>
<label for="password">Password</label><br>
<input type="password" name="password" id="password" placeholder="Enter Password" required><br>
<label for="Bio">Bio</label><br>
<textarea type="text" value="personal information" id="bio" placeholder="Enter Bio" cols="30"></textarea>
</fieldset>
<br>
<fieldset>
<legend>How did you hear about us?</legend>
<input type="radio" id="billboard" name="hear about us" value="Billboard">
<label for="billboard">Billboard</label><br>
<input type="radio" id="radio advertisement" name="hear about us" value="Radio Advertisement">
<label for="radio advertisement">Radio Advertisement</label><br>
<input type="radio" id="internet advertisement" name="hear about us" value="Internet Advertisement">
<label for="internet advertisement">Internet Advertisement</label><br>
<input type="radio" id="other" name="hear about us" value="Other">
<label for="other">Other</label>
</fieldset>
<br>
<fieldset>
<legend>What web browser do you use?</legend>
<select id="browser" name="browser">
<option value="chrome">Chrome</option>
<option value="fire fox">Fire Fox</option>
<option value="safari">Safari</option>
<option value="edge">Microsoft Edge</option>
<option value="duckduckgo">DuckDuckGo</option>
</select>
</fieldset>
<input type="submit" value="Submit">
</form>
</body>
</html>