-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
44 lines (43 loc) · 1.53 KB
/
forms.html
File metadata and controls
44 lines (43 loc) · 1.53 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 action="https://request-inspector.glitch.me/" method="POST">
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="Example@domain.com">
<br>
<label for="password">Password:</label>
<input type="password" name="password" id="password" placeholder="Enter Password here">
<br>
<br>
<label for="bio"></label>
<textarea name="Bio" id="bio" cols="30" rows="10" style="resize: none" placeholder="Tell us about yourself here!"></textarea>
<br>
<br>
<p>How did you hear about us?</p>
<label for="billboard">Billboard</label>
<input type="radio" name="billboard" id="billboard" value="billboard">
<label for="radioAd">Radio Advertisement</label>
<input type="radio" name="radioAd" id="radioAd" value="radio advertisement">
<label for="internetAd">Internet Advertisement</label>
<input type="radio" name="internetAd" id="internetAd" value="internet advertisement">
<label for="other">Other</label>
<input type="radio" name="other" id="other" value="other">
<br>
<br>
<label for="webBrowser">What web browser are you using?</label>
<select name="webBrowser" id="webBrowser" required>
<option value="">Please select one</option>
<option value="Safari">Safari</option>
<option value="Chrome">Chrome</option>
<option value="Internet Explorer">Internet Explorer</option>
</select>
<br>
<br>
<button type="submit">Submit</button>
</form>
</body>
</html>