-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestView.html
More file actions
100 lines (90 loc) · 3 KB
/
Copy pathtestView.html
File metadata and controls
100 lines (90 loc) · 3 KB
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
<html>
<head>
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io();
</script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<meta charset="utf-8" />
<meta http-equiv="refresh" content="5">
<title>TOTEM</title>
<style>
html, body {
margin:0;
padding:0;
background: skyblue;
color: #FFFFFF;
font-size: 2em;
text-align: center;
}
img {
display: block;
max-width: 100%;
max-height: 100%;
margin: auto;
}
</style>
<!-- Bulma Version 0.7.2-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css" />
<link rel="stylesheet" type="text/css" href="../css/admin.css">
</head>
<body>
<h1>TOTEM</h1>
<div style="width:100%">
<div style="height:300px;width:300px;text-align:center; display: inline-block;">
<img src="./uploads/image.jpg"/>
</div>
<div style="height:300px;width:300px;text-align:center; display: inline-block;">
<img src="./uploads/image2.jpg"/>
</div>
</div>
<div style="width:100%">
<div style="height:300px;width:300px;text-align:center; display: inline-block;">
<img src="./uploads/image3.jpg"/>
</div>
<div style="height:300px;width:300px;text-align:center; display: inline-block;">
<img src="./uploads/image4.jpg"/>
</div>
</div>
<div class="columns is-centered">
<div class="column is-5">
<div class="card events-card">
<header class="card-header">
<p class="card-header-title">
Events
</p>
<a href="#" class="card-header-icon" aria-label="more options">
<span class="icon">
<i class="fa fa-angle-down" aria-hidden="true"></i>
</span>
</a>
</header>
<div class="card-table">
<div class="content">
<table class="table is-fullwidth is-striped is-hoverable" id="textTable">
<tbody>
<tr>
<td width="5%"></td>
<td>Lorum ipsum dolem aire</td>
</tr>
</tbody>
</table>
</div>
</div>
<footer class="card-footer">
</footer>
</div>
</div>
</div>
<img style ="display: block;margin-right: 10px;margin-bottom: 10px;max-height: 100px;max-width: 100px" src="./qrCodes/qrCode1.png"/>
<script>
$.get('postedText.txt', function(textData, status) {
var lines = textData.split("\n")
alert(textData + '\nStatus = ' + status);
$.each(lines, function(n, contentLine) {
$('#textTable').append('<tr>\n <td width="5%"></td>\n <td>' + contentLine + '</td> </tr>');
});
}, 'text');
</script>
</body>
</html>