-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
60 lines (60 loc) · 1.99 KB
/
forms.html
File metadata and controls
60 lines (60 loc) · 1.99 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
52
53
54
55
56
57
58
59
60
<!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>
<link rel="stylesheet" href="./css/forms.css">
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="email">
<span>email</span>
<input type="textbox" placeholder="email">
</label>
<br>
<label for="password">
<span>password</span>
<input type="password" placeholder="password">
</label>
<br>
<label>
<span>Please enter some info about your self here</span>
<br>
<textarea name="bio"></textarea>
</label>
<br>
<label for="how_did_you_hear_about_us">
<span>how did you hear about us?</span>
<br>
<input type="checkbox" value="Billboard" name="us">
<Span>Billboard</Span>
<br>
<input type="checkbox" value="Radio Advertisement" name="us">
<span>Radio Advertisement</span>
<br>
<input type="checkbox" value="Internet Advertisement" name="us">
<span>Internet Advertisement</span>
<br>
<input type="checkbox" value="Other" name="us">
<span>other</span>
</label>
<br>
<label>
<span>What web browser are you using</span>
<select name="browser">
<option value="chrome">chrome</option>
<option value="safari">safari</option>
<option value="firefox">firefox</option>
<option value="other">other</option>
</select>
</label>
<br>
<label>
<button type="submit">submit</button>
</label>
</form>
</body>
</html>