-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
46 lines (35 loc) · 1.39 KB
/
forms.html
File metadata and controls
46 lines (35 loc) · 1.39 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
<!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 name="email" type="email" id="email" placeholder="email"><br>
<label for="password">Password</label>
<input id="password" type="password" name="email" placeholder="password"><br>
<label for="Bio!">Bio!</label><br>
<textarea name="Bio!" id="Bio!"></textarea><br>
<label>How did you hear about us?</label><br>
<label for="Billboard">Billboard</label>
<input type="radio" name="select" value="Billboard" id="Billboard"><br>
<label for="Radio">Radio</label>
<input type="radio" name="selec" value="Radio" id="Radio"><br>
<label for="Internet">Internet</label>
<input type="radio" name="sele" value="Internet" id="Internet"><br>
<label for="Other">Other</label>
<input type="radio" name="elect" value="other" id="Other"><br>
<label for="webBrowser">What browser are you using</label>
<select name="webBrowser" id="webBrowser">
<option value="Chrome">Chrome</option>
<option value="Firefox">Firefox</option>
<option value="Internet Explorer">Internet Explorer</option>
<option value="Safari">Safari</option>
</select>
<br>
<input type="submit">
</form>
</body>
</html>