-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
51 lines (47 loc) · 1.97 KB
/
forms.html
File metadata and controls
51 lines (47 loc) · 1.97 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
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<!--if you need more key value pairs, separate them with an ampersand-->
<label for="email">Email</label><br>
<input id="email" name="Email" type="text" placeholder="user@email.com">
<!-- placeholder is good to put what is expected in that spot-->
<br>
<label for="password">Password</label><br>
<input id="password" name="password" type="password" placeholder="password">
<br>
<label for="textarea">Bio </label><br>
<textarea id="textarea" name="comment" placeholder="Enter your bio"></textarea>
<br>
<br>
<h3>How did you hear about us?</h3>
<label for="billboard">
<input id=billboard type="radio" name="hear" value="billboard"> Billboard</label><br>
<label for="radio">
<input id="radio" type="radio" name="hear" value="radio advertisements"> Radio Advertisements</label><br>
<label for="internet">
<input id=internet type="radio" name="heard" value="internet advertisement"> Internet Advertisements</label><br>
<label for="Other">
<input id=other type="radio" name="heard" value="other"> Other</label><br>
<br>
<label for="browser_preference"><h3>What web browser are you using?</h3></label>
<select name="browser preference" id="browser_preference">
<option value="chrome" id="google chrome" name="chrome">Chrome</option>
<option value="firefox" id="firefox" name="firefox">Firefox</option>
<option value="safari" id="safari" name="safari">Safari</option>
<!-- lowercase in code unless necessary-->
</select>
<br>
<br>
<input type="submit">
</form>
<br>
</body>
</html>