-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
82 lines (67 loc) · 3.91 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
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
<!doctype html>
<html lang="en" class="nist-footer-bottom">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha256-YLGeXaapI0/5IgZopewRJcFXomhRMlYYjugPLSyNjTY=" crossorigin="anonymous">
<!-- Box UI Elements -->
<link rel="stylesheet" href="https://cdn01.boxcdn.net/platform/elements/20.0.0/en-US/explorer.css" />
<!-- NIST Header/Footer -->
<link rel="stylesheet" href="https://pages.nist.gov/nist-header-footer/css/nist-combined.css">
<!-- Our Style -->
<link rel="stylesheet" href="static/style.css">
<!-- polyfill.io only loads the polyfills your browser needs -->
<script src="https://cdn.polyfill.io/v2/polyfill.min.js?features=es6,Intl"></script>
<!-- Alternatively, use polyfill hosted on the Box CDN
<script src="https://cdn01.boxcdn.net/polyfills/core-js/2.5.3/core.min.js"></script>
-->
<title>Disaster Failure Studies Portal</title>
</head>
<body>
<div id="loading">
<img src="static/loading.svg" alt="Loading spinner">
</div>
<div id="main" class="content container">
<main class="row">
<!-- home view -->
<div id="home-view" class="col-sm-12">
<h1>Disaster Failure Studies Portal</h1>
<div id="token-expired">
The access token has expired. You may submit <a href="./form.html">this form</a> to upload another data set.
</div>
<div id="explorer"></div>
</div>
<div id="help-view" class="col-sm-12">
<p>Press the
<button class="btn be-btn-add">
<span class="btn-content">
<svg class="icon-add-thin " width="17" height="17" viewBox="0 0 17 17" focusable="false" role="presentation"><path class="fill-color" fill="#222222" d="M8 0h1v17H8z"></path><path class="fill-color" fill="#222222" d="M17 8v1H0V8z"></path></svg>
</span>
</button>
button to upload files or create sub-folders.
</p>
<p> You may select multiple files to upload at the same time, but each file should not be larger
than 50GB. This uploader link will expire in about an hour, at <strong id="expiration"></strong>.
You may reuse the link to upload more files or delete any files you've uploaded to this folder,
before this link expires. If you have a very large data set that exceeds this 1-hour limit, please
<a href="mailto:[email protected]">contact us</a>.
</p>
</div>
</main>
</div>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha256-ZvOgfh+ptkpoa2Y4HkRY28ir89u/+VRyDE7sB7hEEcI=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha256-CjSoeELFOcH0/uxWu6mC/Vlrc1AARqbm/jiiImDGV3s=" crossorigin="anonymous"></script>
<!-- NIST header/footer -->
<script src="https://pages.nist.gov/nist-header-footer/js/nist-header-footer.js" type="text/javascript" defer="defer"></script>
<!-- Box UI Elements -->
<script src="https://cdn01.boxcdn.net/platform/elements/20.0.0/en-US/explorer.js"></script>
<!-- Our Script -->
<script src="static/app.js"></script>
<!-- Google Analytics -->
<script async type="text/javascript" id="_fed_an_ua_tag" src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=NIST&subagency=github&pua=UA-66610693-1&yt=true&exts=ppsx,pps,f90,sch,rtf,wrl,txz,m1v,xlsm,msi,xsd,f,tif,eps,mpg,xml,pl,xlt,c"></script>
</body>
</html>