-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="styles.css"/>
<link type="text/css" rel="stylesheet" href="https://js.arcgis.com/4.11/esri/themes/light/main.css"/>
<title>GovAlert</title>
</head>
<body>
<article>
<header>
<section>
<nav>
<a href="#1" id="emergencies">
<span class="closed">>></span>
<span class="open"><<</span>
alerts
</a>
<a href="#2">Map</a>
<a href="#3">Search</a>
</nav>
<span>GovAlert</span>
<footer>Be in the know when weather impacts your mission.</footer>
<aside>
<input type="text" placeholder="Filter contracts by agency (e.g. DOD)" id="agency" />
<button type="submit" id="agency-search">Filter</button>
</aside>
</section>
</header>
<aside id="alerts">
<div id="listdiv">
<header>Active Alerts</header>
</div>
</aside>
<div id="chartdiv"></div>
<div id="chartshadow">
<div></div>
</div>
<div id="output">
<button type="button" id="clear">Clear Cache</button>
</div>
</article>
<footer>
<section>
540 © 2019 - MongoWorld Challenge
</section>
<script src="https://s3.amazonaws.com/stitch-sdks/js/bundles/4.3.1/stitch.js"></script>
<script src="https://js.arcgis.com/4.11/"></script>
<script src="constants.js"></script>
<script src="scripts.js"></script>
<script src="list.js"></script>
</footer>
</body>
</html>