File tree 1 file changed +32
-0
lines changed
user-input-with-forms/chapter-examples-CT
1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < title > Select Input</ title >
7
+ </ head >
8
+
9
+ < body >
10
+ < form action ="https://handlers.education.launchcode.org/request-parrot " method ="post ">
11
+ < label > Operation Code:
12
+ <!-- includes empty value "Select One" option -->
13
+ < select name ="operation ">
14
+ < option value =""> * Select One *</ option >
15
+ < option value ="1 "> Simulation</ option >
16
+ < option value ="2 "> Rocket Test</ option >
17
+ < option value ="3 "> Crew Related</ option >
18
+ </ select >
19
+ </ label >
20
+
21
+ < label > Facility:
22
+ < select name ="facility ">
23
+ < option value ="johnson "> Johnson Space Center, TX</ option >
24
+ < option value ="kennedy "> Kennedy Space Center, FL</ option >
25
+ < option value ="white-sands "> White Sands Test Facility, NM</ option >
26
+ </ select >
27
+ </ label >
28
+
29
+ < button > Send Report</ button >
30
+ </ form >
31
+ </ body >
32
+ </ html >
You can’t perform that action at this time.
0 commit comments