-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
49 lines (46 loc) · 1.73 KB
/
forms.html
File metadata and controls
49 lines (46 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register with Us</title>
</head>
<body>
<h1>Register with Us</h1>
<form method="POST" action="https://request-inspector.glitch.me/">
<input type="text" name="email" placeholder="Enter your email address">
<br>
<input type="password" name="password" placeholder = "password">
<br><br>
<h3>Bio</h3>
<textarea name="comment"></textarea>
<br><br>
<h3>How did you hear about us?</h3>
<input type="radio" name="q1" value="Billboard" >Billboard<br>
<input type="radio" name="q1" value="Radio Advertisement">Radio Advertisement <br>
<input type="radio" name="q1" value="Internet Advertisement">Internet Advertisement <br>
<input type="radio" name="q1" value="other">other <br>
<br>
<!-- <h2>How did you hear about us?</h2>-->
<!-- <label for="billboard">-->
<!-- <input type="radio" name="q1" value="billboard" >Billboard-->
<!-- </label>-->
<!-- <label for="Radio Advertisement">-->
<!-- <input type="radio" name="q1" value="Radio Advertisement">Radio Advertisement-->
<!-- </label>-->
<!-- <label for="windows">-->
<!-- <input type="radio" name="q1" value="Internet Advertisement">Internet Advertisement-->
<!-- </label>-->
<!-- <label for="other">-->
<!-- <input type="radio" name="q1" value="other">other-->
<!-- </label>-->
<h3> What browser are you using?</h3>
<select name="What browser are you using?">
<option value="google">Google</option>
<option value="Microsoft Edge">Microsoft Edge</option>
<option value="Firefox">Firefox</option>
</select>
<br><br><br>
<button type="submit">Submit the form</button>
</form>
</body>
</html>