-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 1.49 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<title>Launch Checklist</title>
<link rel = "stylesheet" type = "text/css" href = "styles.css" />
<script src = "script.js"></script>
</head>
<body>
<h1>Launch Checklist Form</h1>
<div id="missionTarget">
<!-- Fetch some planetary data -->
</div>
<form id="launchForm">
<div class="form-group">
<label>Pilot Name
<input type="text" name="pilotName"/>
</label>
</div>
<div class="form-group">
<label>Co-pilot Name
<input type="text" name="copilotName"/>
</label>
</div>
<div class="form-group">
<label>Fuel Level (L)
<input type="text" name="fuelLevel"/>
</label>
</div>
<div class="form-group">
<label>Cargo Mass (kg)
<input type="text" name="cargoMass"/>
</label>
</div>
<button>Submit</button>
</form>
<div id="launchStatusCheck">
<h2 id="launchStatus">Awaiting Information Before Launch</h2>
<ul id="itemStatus">
<li id="pilotStatus"></li>
<li id="copilotStatus"></li>
<li id="fuelStatus"></li>
<li id="cargoStatus"></li>
</ul>
</div>
</body>
</html>