-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
33 lines (29 loc) · 976 Bytes
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>
Kreegur
</title>
</head>
<body>
<div id="app" class="container-fluid mt-2">
<home-component :logging="logging" :log-file-size="logFileSize" :log-file-path="logFilePath"
:seconds-since-processor-update="secondsSinceProcessorUpdate" :log-file-name="logFileName"
:numeric-data="numericData" :modules-analogue-input="modulesAnalogueInput"></home-component>
<div class="row justify-content-center">
<div class="col-11">
<canvas id="myChart2" width="400" height="400"></canvas>
</div>
</div>
</div>
<link rel="stylesheet" href="css/bootstrap.css">
<script>
var ipAddress = "<?php echo $_SERVER['SERVER_ADDR']; ?>";
</script>
<script src="js/node_modules/chart.js/dist/Chart.js"></script>
<script src="js/dist/bundle.js">
</script>
</body>
</html>