-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
42 lines (38 loc) · 1.27 KB
/
forms.html
File metadata and controls
42 lines (38 loc) · 1.27 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
<!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</label>
<input id="email" name="email" placeholder="Enter your email address">
<br>
<label for="password">Password</label>
<input id="password" name="password" placeholder="Password">
<br>
<br>
<label name="bio">Bio</label><br>
<textarea name="bio"></textarea>
<br>
<br>
<label name="How did you hear about us?">How did you hear about us?<br>
A <input type="radio" name="billboard" value="a"><br>
B <input type="radio" name="radio advertisement" value="b"><br>
C <input type="radio" name="internet advertisement" value="c"><br>
D <input type="radio" name="other" value="d"><br>
<br>
<label name="What web browser are you using?">What web browser are you using?</label><br>
<select name="What web browser are you using?">
<option value="google chrome">Google Chrome</option>
<option value="microsoft edge">Microsoft Edget</option>
<option value="safari">Safari</option>
<option value="other">Other</option>
</select>
<br>
<br>
<input type="submit">
</form>
</body>
</html>