File tree 2 files changed +33
-0
lines changed
user-input-with-forms/exercises 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "liveServer.settings.port" : 5501
3
+ }
Original file line number Diff line number Diff line change 9
9
</ head >
10
10
< body >
11
11
<!-- TODO: add form here -->
12
+ < form action ="https://handlers.education.launchcode.org/request-parrot " method ="POST ">
13
+ < label > Test Name: < input type ="text " name ="testName "/> </ label >
14
+ < label > Test Date: < input type ="date " name ="testDate "/> </ label >
15
+
16
+ < label > Rocket Type:
17
+
18
+ < select name ="rocketType "/>
19
+ < option value =""> Select One</ option >
20
+ < option value ="1 "> Brant</ option >
21
+ < option value ="2 "> Lynx</ option >
22
+ < option value =""> Orion</ option >
23
+ < option value =""> Terrier</ option >
24
+
25
+ </ select >
26
+ </ label >
27
+
28
+ < label > Number of Boosters:< input type ="number " name ="boosterCount " min ="0 " max ="10 " step ="2 "/> </ label >
29
+
30
+ Wind Rating:
31
+ < label > No Wind < input type ="radio " name ="windRating " value ="0 "/> </ label >
32
+ < label > Mild < input type ="radio " name ="windRating " value ="10 "/> </ label >
33
+ < label > Strong< input type ="radio " name ="windRating " value ="20 "/> </ label >
34
+
35
+ < label > Uses Production Grade Servers: < input type ="checkbox " name ="productionServers "/> </ label >
36
+
37
+
38
+
39
+
40
+ < button > Run Simulation</ button >
41
+ </ form >
12
42
</ body >
13
43
14
44
</ html >
You can’t perform that action at this time.
0 commit comments