-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
64 lines (54 loc) · 2.82 KB
/
forms.html
File metadata and controls
64 lines (54 loc) · 2.82 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
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register with us</title>
</head>
<body>
<!-- <form action="GET">
<label for="textbox">What is your name?</label><br>
<input type="text" name="textbox"><br><br>
<label for="email">What is your e-mail?</label><br>
<input type="email" name="email" placeholder="johndoe@gmail.com"><br><br>
<label for="radio">What species are you</label><br>
<input type="radio" name="radio" value="insect"> Insect<br>
<input type="radio" name="radio" value="cat"> Cat<br>
<input type="radio" name="radio" value="human"> Human<br>
<input type="radio" name="radio" value="gorilla"> Gorilla<br><br>
<select name="colors" id="">
<option value="Red">Red</option>
<option value="Blue">Blue</option>
<option value="Green">Green</option>
<option value="Purple">Purple</option>
<option value="Pink">Pink</option>
<option value="yellow">Yellow</option>
</select><br><br>
<input type="checkbox" value="true" name="ageVerification"> I agree that I am 18 year old or older.<br>
<button type="submit">Submit</button>
</form> -->
<form method="GET" action="https://request-inspector.glitch.me/">
<label for="email2">What is your email?</label><br>
<input type="email" name="email2" id="email2" placeholder="JohnDoe123@people.com"><br><br>
<label for="password2">Enter your password</label><br>
<input type="password" name="password2" id="password2" placeholder="***********"><br><br>
<textarea name="bio" id="bio" cols="30" rows="5" placeholder="Tell us about yourself"></textarea>
<label for="radio2">How did you hear about us?</label><br>
<input type="radio" name="radio2" id="radio2" value="null" checked> Select One <br>
<input type="radio" name="radio2" id="radio2" value="billboard"> Billboard <br>
<input type="radio" name="radio2" id="radio2" value="radioAdvertisemet"> Radio <br>
<input type="radio" name="radio2" id="radio2" value="internetAdvertisement"> Internet Advertisment <br>
<input type="radio" name="radio2" id="radio2" value="other"> Other <br>
<label for="dropdown">What browser are you using?</label>
<select name="dropdown" id="dropdown">
<option value="null">Select</option>
<option value="chrome">Chrome</option>
<option value="edge">Edge</option>
<option value="firefox">Firefox</option>
<option value="safari">Safari</option>
</select> <br><br>
<button type="submit">Submit</button>
</form>
</body>
</html>