-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
87 lines (75 loc) · 2.85 KB
/
forms.html
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Register with Us</title>
</head>
<body>
<header>
<h1>Veridian Dynamics</h1>
</header>
<main>
<!-- Name: Gloria Laura Vela
Purpose: For this exercise, we will be building a registration page for Veridian Dynamics.
We will be utilizing Request Inspector to view the resulting data that our form submits.
Throughout this exercise, you should be submitting your form and viewing the resulting data on the Request Inspector page. -->
<form method="post" action="https://request-inspector.glitch.me/" target="_blank">
<!-- Email and password section -->
<section>
<header>
<h2>Register with us</h2>
</header>
<label for="email">Email: </label>
<input type="text" id="email" name="email" placeholder="Enter email">
<br>
<label for="password">Password: </label>
<input type="password" id="password" name="password" placeholder="Enter password">
</section>
<br>
<!-- Bio section -->
<section>
<header>
<label for="bio">Bio:</label>
<br>
<textarea name="bio" id="bio" cols="30" rows="10" placeholder="Tell us about yourself"></textarea>
</header>
</section>
<br>
<!-- How did you hear about us -->
<section>
<header>
<label >How did you hear about us?</label>
</header>
<input type="checkbox" name="chkRadio" value="true" id="chkRadio">
<label for="chkRadio">radio</label>
<br>
<input type="checkbox" name="chkBillboard" value="true" id="chkBillboard">
<label for="chkBillboard">billboard</label>
<br>
<input type="checkbox" name="chkRadio_advertisement" value="true" id ="chkRadio_advertisement">
<label for="chkRadio_advertisement">radio advertisement</label>
<br>
<input type="checkbox" name="chkInternet_advertisement" value="true" id="chkInternet_advertisement">
<label for="chkInternet_advertisement">internet advertisement</label>
<br>
<input type="checkbox" name="chkOther" value="true" id="chkOther">
<label for="chkOther">other</label>
<br>
</section>
<br>
<!-- Browser type -->
<label for="browser_type">What browser are you using?</label>
<select name="browser_type" id="browser_type">
<option value="1">Chrome</option>
<option value="2">Mozzila</option>
<option value="3">IE</option>
</select>
<br>
<br>
<section>
<button type="submit">Submit</button>
</section>
</form>
</main>
</body>
</html>