-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
58 lines (51 loc) · 1.85 KB
/
forms.html
File metadata and controls
58 lines (51 loc) · 1.85 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
<body>
<h1>Register with us!</h1>
<form method="post" action="https://request-inspector.glitch.me/">
<label for="Username">Username</label>
<label for="username"></label><input id="username" name="username" type="text">
<br>
<label for="password">Password</label>
<input id="password" name="password" type="password">
<br>
<input type="submit">
<br>
<br>
<form>
<label>
<textarea name= "comment" rows="8" cols="80" maxlength="500" placeholder="Bio(tell us about you)..." required></textarea>
</label>
</form>
<form action="https://request-inspector.glitch.me">
<p>How did you hear about us?</p>
<input type="radio" id="Billboard"
name="How did you hear about us." value="Billboard">
<label for="Billboard">Billboard</label><br>
<input type="radio" id="Radio Advertisement"
name="How did you hear about us?" value="Radio Advertisement" >
<label for="Radio Advertisement">Radio Advertisement</label><br>
<input type="radio" id="Internet"
name="How did you hear about us." value="Internet">
<label for="Internet">Internet</label><br>
<label for="other"></label><input type="radio" id="other"
name="How did you hear about us." value="Other">
<label for="Other">Other</label><br>
<br>
<label for="What web browser do you use?">What web browser do you use?:</label><br>
<br>
<select name="Web page" id="What web browser do you use?">
<option value="">--Please choose an option--</option>
<option value="Google">Google</option>
<option value="Yahoo">Yahoo</option>
<option value="Duck">Duck Duck Go</option>
<option value="safari">Safari</option>
</select>
<br>
<br>
<input type="submit">
</form>
</form>
</body>