-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
57 lines (44 loc) · 1.45 KB
/
forms.html
File metadata and controls
57 lines (44 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register With Us</title>
</head>
<body>
<form method="POST" action="https://request-inspector.glitch.me/">
<label for="emailname">Email:</label>
<input id="emailname" name="emailname" type="emailname" placeholder="Example@domain.com">
<br>
<label for="password">Password:</label>
<input id="password" name="password" type="password">
<br>
<label for="bio">Bio:</label>
<textarea id="bio" name="bio" rows="10" cols="60"></textarea>
<br>
<p><h1>How did you hear about us?</h1></p>
A <input type="radio" name="quiz_question_1" value="a">Billboard <br>
B <input type="radio" name="quiz_question_2" value="b">Radio<br>
C <input type="radio" name="quiz_question_3" value="c">Internet<br>
D <input type="radio" name="quiz_question_4" value="d">Other<br>
<br>
<label for="operatingSystem">Which operating system do you use?</label>
<select name="operatinSystem" id="operatingSystem">
<option value="windows">Windows</option>
<option value="Linux">Linux</option>
<option value="macOS">MacOS</option>
<option value="andriod">Android</option>
<option value="apple">Apple</option>
</select>
<br>
<h2>Would you like to sign up for El Formo Newsletter?</h2>
<select name="newsletter_signup" id="newsletter_signup">
<option value="n">No</option>
<option value="y">Yes</option>
</select>
<br>
<br>
<br>
<input type="submit" button ="submit">
</form>
</body>
</html>