forked from ngageoint/opensphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
old-template.html
75 lines (67 loc) · 1.85 KB
/
old-template.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
<!DOCTYPE html>
<html class="no-js">
<head>
<title>Browser Check</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta charset="UTF-8">
<!--VENDOR_CSS-->
<!--APP_CSS-->
<style>
li {
margin-bottom: 10px;
}
ul {
list-style: none;
padding-left: 20px;
}
ul.u-bullet {
list-style: unset;
padding-left: 20px;
}
li:before {
font-family: 'FontAwesome';
margin: 0 5px 0 -15px;
}
li.js-found:before {
color: #0d0;
content: '\f00c';
}
li.js-missing:before {
color: #d00;
content: '\f00d';
}
</style>
</head>
<body>
<noscript>Javascript is disabled in your browser. Turn it on and refresh the page.</noscript>
<article class="container-fluid d-flex flex-column flex-wrap mt-5 justify-content-center">
<div class="col-12 col-lg-4 offset-lg-4">
<section class="flex-shrink-0">
<h3 class="js-report"></h3>
<div>
<i class="js-browser-check-wait fa fa-circle-o-notch fa-spin" style="font-size: 48px;"></i>
</div>
<ul class="js-checks"></ul>
<strong>Recommended browsers for the best experience:</strong>
<ul class="u-bullet">
<li>Google Chrome version 36 or higher</li>
<li>Mozilla Firefox version 38 or higher</li>
</ul>
<p class="js-browser-info"></p>
<div class="js-min-browser-msg"></div>
<p>
<div class="js-contact-info"></div>
</p>
<div>
<button class="btn btn-secondary mr-2" onClick="toggleFullList()">Show/Hide All Detected Capabilities</button>
<a class="btn btn-primary" href="/">Go Home</a>
</div>
</section>
<section class="flex-col">
<p class="js-full-list"></p>
</section>
</div>
</article>
<!--VENDOR_JS-->
</body>
</html>