-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunches.html
104 lines (96 loc) · 4.62 KB
/
launches.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Space Launch Viewer</title>
<style>
#launchCount {
width: 50px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark">
<div class="container">
<a href="index.html" class="navbar-brand">Space Launch Viewer</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">Home</a>
</li>
<li class="nav-item">
<a href="agencies.html" class="nav-link">Space Agencies</a>
</li>
<li class="nav-item active">
<a href="launches.html" class="nav-link">Upcoming Launches</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="launchHeader">
<div class="container">
<div class="row">
<div class="col text-center my-3">
<h1>Upcoming Launches</h1>
<hr>
</div>
</div>
<div class="row">
<div class="col">
<form class="form-inline d-flex justify-content-center">
<div class="input-group px-3">
<div class="input-group-prepend">
<span class="input-group-text">Show Launches</span>
</div>
<!-- type=text used (instead of number) to fulfill project requirement of HTML regex -->
<input type="text" id="launchCount" class="form-control text-center px-0" value="5" aria-label="Display a number of launches" pattern="[1-9][0-9]*">
</div>
<button class="btn btn-outline-dark" id="refreshLaunches">Refresh Results</button>
</form>
</div>
</div>
</div>
</section>
<section id="launchResults">
<div class="container">
<div class="row">
<div class="col">
<div id="resultsContainer">
<h5 class="text-center mt-4">Loading Launch Data</h5>
<table class="table table-striped" id="upcomingLaunchTable">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Launch Date</th>
<th scope="col">Launch Provider</th>
<th scope="col">Launch Name</th>
<th scope="col">Rocket Name</th>
<th scope="col">Launch Pad</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="6">Attempting to load launch data from Launch Library API.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="js/launches.js"></script>
</body>
</html>