-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotLoggedInContent.php
117 lines (85 loc) · 3.15 KB
/
notLoggedInContent.php
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
114
115
116
117
<!DOCTYPE html>
<html>
<!--
simple html page to show information about icon when you are not logged in
called from the iisstart.php file.
-->
<head>
<style>
</style>
</head>
<body>
<div class="container-fluid" style="background-color: #f5f5f5;">
<div class"=row" >
<div class="text-center hidden-xs " >
<h2 >Welcome to EthosEnergy <strong>iCon</strong></h2>
<p>   Your home for machinery monitoring and diagnostics</p>
</div>
<div class="text-center visible-xs " >
<h2 >Welcome to EthosEnergy <br><strong>iCon</strong></h2>
<p>   Your home for machinery monitoring and diagnostics</p>
</div>
</div>
</div>
<br>
<div class="col-md-5">
<div class"=row">
<div class="col-sm-12">
<button class="accordion ">What is EthosEnergy <strong>iCon</strong>?</button>
<div class="panel">
<p><strong>iCon</strong> is a remote monitoring and diagnostics solution for <ul><li>any turbine</li><li> any driven unit - generator, compressor or pump</li></ul>
Icon securely collects and transmits high resolution operational data for storage, processing and analysis by EthosEnergy's expert engineers. <br><br> Allowing you to <strong><ul><li>See more</li><li>Know more</li><li>Do more</li></strong>
</ul></p>
</div>
</div>
</div>
<div class"=row">
<div class="col-sm-12">
<button class="accordion rounded">How does <strong>iCon</strong> work?</button>
<div class="panel">
<p>The <strong>iCon</strong> system consists of a secure on-site industrial router connected to the PLC. The router collects data and then securely transmits it back to the EthosEnergy data center.<br> Once in the data center it is stored in a high performance industry leading historian.
The stored data is then monitored by our engineers as well as by our proprietary automated machine monitoring algorithms. </p>
</div>
</div>
</div>
<div class"=row">
<div class="col-sm-12">
<button class="accordion">How do I get <strong>iCon</strong>?</button>
<div class="panel">
<p>Contact your local EthosEnergy representative</p><br>
<p>Or click<a href='../caseicon.php'> here </a> to raise as support request </p>
</div>
</div>
</div>
</div>
<div class="col-md-7 hidden-sm hidden-xs">
<div class="img-responsive rounded">
<img src="/images/LT-Solar-Mars.jpg" class="media-object" style="width:92%">
</div>
</div>
<?php //"http://www.ethosenergygroup.com/_catalogs/masterpage/ethos/img/slides/om-web-banner.gif"
?>
<script>
var acc = document.getElementsByClassName("accordion");
var i;
for (i = 0; i < acc.length; i++) {
acc[i].onclick = function() {
this.classList.toggle("active");
var panel = this.nextElementSibling;
if (panel.style.maxHeight){
panel.style.maxHeight = null;
} else {
panel.style.maxHeight = panel.scrollHeight + "px";
}
}
}
</script>
<div class="footer">
<div class="container">
<div class="text-center">
<p class="text-muted">Unlock your turbine and declare <i>independence</i>.... Freedom with No Limits</p>
</div>
</div>
</div>
</body>
</html>