-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
56 lines (52 loc) · 2.17 KB
/
forms.html
File metadata and controls
56 lines (52 loc) · 2.17 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
<!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/">
<label for="email">Email</label>
<input id="email" name="email" type="text" placeholder="Enter your Email">
<br>
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password" placeholder="enter Password">
<br>
<br>
<label for= "bio" >Bio</label>
<textarea id="bio" name = "bio" placeholder="tell me about yourself"></textarea>
<p>How did you hear about us</p>
<input type="radio" id="billboard" name= "info" value="billboard">
<label for = "billboard" >Billboard</label><br>
<input type="radio" id="advertisement" name="info" value="radio advertisement">
<label for = "advertisement" >Radio Advertisement</label><br>
<input type="radio" id="internet" name="info" value="internet">
<label for = "internet">Internet</label><br>
<input type="radio" id="other" name="info" value="other">
<label for = "other" >Other</label>
<p>How did you hear about us</p>
<input type="checkbox" id="billboar" name= "billboard" >
<label for = "billboar" >Billboard</label><br>
<input type="checkbox" id="advertisemen" name="radio advertisement" >
<label for = "advertisemen" >Radio Advertisement</label><br>
<input type="checkbox" id="interne" name="internet" >
<label for = "interne">Internet</label><br>
<input type="checkbox" id="othe" name="other" >
<label for = "othe" >Other</label>
<br>
<label for ="Browser Preference">What is your prefered Browser</label>
<select id="Browser Preference" name="Browser Preference">
<option value="chrome">Google Chrome</option>
<option value="Safari">Safari</option>
<option value="explorer">Internet Explorer</option>
<option value="mozilla">mozilla firefox</option>
</select>
<br>
<button type="submit" id="submit">Submit the form</button>
</form>
</body>
</html>