-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
48 lines (39 loc) · 1.48 KB
/
forms.html
File metadata and controls
48 lines (39 loc) · 1.48 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
45
46
47
48
<!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 type="email" name="Email" id="email" type="text" placeholder="Input your email.">
<br>
<label for="password">Password</label>
<input type="password" name="Password" id="password" type = "password" placeholder="Enter your password.">
<br>
<label for="bio">Bio</label>
<textarea id="bio" name="Bio" placeholder="Enter your bio."></textarea>
<br>
<br>
<label>How did you hear about us?</label><br>
<label for="radio_button">Billboard</label>
<input id= "radio_button" name="radio_button" value="billboard" type="radio"><br>
<label for="radio_button2">Radio Advertisement</label>
<input id= "radio_button2" name="radio_button2" value="Radio Advertisement" type="radio"><br>
<label for="radio_button3">Internet Advertisement</label>
<input id= "radio_button3" name="radio_button3" value="Internet Advertisement" type="radio"><br>
<label for="radio_button4">Other</label>
<input id= "radio_button4" name="radio_button4" value="Other" type="radio"><br>
<br>
<label>What browser are you using?</label>
<select name="dropdown">
<option value="chrome">Google Chrome</option>
<option value="safari">Safari</option>
<option value="firefox">Firefox</option>
</select>
<br>
<button type="submit">Submit</button>
</form>
</body>
</html>