-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.15 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 lang="de-DE">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/x-icon" href="images/favicon.png">
<title>G-Analysis - Energiemanagement</title>
<link id="indexStyle" rel="stylesheet" href="src/css/index_style.css" type="text/css" media="all">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" crossorigin="anonymous"></script>
</head>
<body>
<!--Logo-->
<img id="Glogo" src="images/gLogoOrg3.png" alt="Gipscomm-Energie Logo" style="float:left; height:60px;margin:40px 0px 0px 40px;">
<img id="logo" src="images/g_analysisNeu6.png" alt="G-Analysis Logo" style="clear:right; float:right;height:60px;margin:40px 40px 0px 0px;">
<img id="badgeBund" src="src/images/indexPage/MinWiEnCut.png" alt="Bundesministerium für Wirtschaft und Energie Badge">
<div id="indexP">
<div id="divImages">
<img class="images" alt="Auswertung von Energiedaten" src="src/images/indexPage/1.jpg">
<img class="images" alt="Auswertung von Energiedaten" src="src/images/indexPage/2.jpg">
<img class="images" alt="Auswertung von Energiedaten" src="src/images/indexPage/3.jpg">
</div>
<div>
<div class="container">
<h1>Willkommen bei Gipscomm-Analysis.</h1>
<br>
<br>
<button id="loginButton">Einloggen</button>
<button id="demoButton">Demo</button>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<a href="impressum.html" style="margin-right:10px;">Impressum</a>
<a href="datenschutz.html">Datenschutz</a>
</div> <!--Ende indexP-->
<script type="text/javascript">
//Auf loginP leiten wenn Einloggen geklickt
$("#loginButton").click(function () {
window.open("login.html", "_self");
});
$("#demoButton").click(function () {
window.open("demo.html", "_self");
});
$.ajaxSetup({
beforeSend: (xhr) => {
xhr.setRequestHeader('Access-Control-Allow-Origin', '*');
}
});
</script>
</body>
</html>