-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecurity.html
113 lines (83 loc) · 3.38 KB
/
security.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
105
106
107
108
109
110
111
112
113
<!doctype html>
<html>
<head body-directive>
<!-- -->
<meta charset="utf-8">
<meta name="product" content="Spaceify">
<meta name="author" content="Spaceify Oy">
<meta name="description" content="Spaceify Edge">
<meta name="viewport" content="width=100%, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes">
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgo=">
<link rel="stylesheet" spe_href="fonts/roboto/roboto.base64.css">
<link rel="stylesheet" spe_href="css/spaceify.edge.css" type="text/css">
<link rel="stylesheet" spe_href="css/styles.css" type="text/css">
<title>Loading...</title>
<!-- -->
<!-- -->
<script src="libs/spaceify.loader.js"></script>
<script spe_src="libs/spaceify.edge.js"></script>
<!-- -->
<script>
var net;
var spdom;
var lang = null;
var config = null;
window.addEventListener("spaceifyReady", function()
{
net = new SpaceifyNet();
spdom = new SpaceifyDOM();
lang = new SpaceifyLanguage();
config = new SpaceifyConfig();
config.initialize("");
lang.processDocument("edgeBody", "data-language", {title: {section: "security", index: "title"}});
var url = "https://" + window.location.hostname + "/";
spaceifyLoader.loadResource(config.LOCATION_FILE, 80, url, url, function(result)
{
if (result.crtErr)
spdom.show("certificateerror", true);
else
spdom.show("securitywarning", true);
spdom.show("edgeBody", true);
});
});
</script>
</head>
<body id="edgeBody" style="display: none;">
<div class="topBar">
<a class="topBarLogoLink" routerLink="/intro">
<img spe_src="images/icon-80p.png" alt="" />
</a>
<div class="topBarLogoText" data-language="global.edge"></div>
<img spe_src="images/homepage.png" onclick="net.loadHomepage();" class="topBarPopMenu" alt="" data-language="title>global.back_to_homepage" />
</div>
<div class="large_background_footer"> </div>
<div id="contentContainer" class="edgeContentContainer">
<!-- SECURITY ERROR -->
<div id="securitywarning" class="edgeContainer" style="display: none;">
<div class="edgeInfo warning">
<span data-language="global.security_warning"></span>
<p>
<button class="edgeButton inrow" data-language="global.btn_reload" onclick="net.loadSecurePage();"></button>
</div>
<div class="breaker"></div>
</div>
<!-- CERTIFICATE ERROR -->
<div id="certificateerror" class="edgeInfo crtErr" style="display: none;">
<span data-language="global.certificate_error"></span>
<p>
<button class="edgeButton inrow" data-language="global.btn_install" onclick="net.loadCertificate();"></button>
<button class="edgeButton inrow" data-language="global.btn_reload" onclick="net.loadSecurePage();"></button>
<div class="breaker"></div>
<div class="edgeSmallInfo" data-language="global.delete_certificate"></div>
</div>
<div class="breaker"></div>
</div>
<iframe id="certIframe" src="" sp_src="-" class="edgeCertIframe" scrolling="no" frameborder="0"></iframe>
<div id="footer" class="footer">
<div class="footerContentLeft">
<img id="32pxc" sp_src="assets/images/by-nc-nd_eu.png" width="91" height="32">
</div>
<div class="footerContentLeft" data-language="global.copyright"></div>
</div>
</body>
</html>