-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.html
22 lines (22 loc) · 935 Bytes
/
client.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
<title>Display Client</title>
<link rel="stylesheet" href="/styles/client.css">
<!--<script src="/script/common.js"></script>-->
<script src="/script/client.js" type="module"></script>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Display Client">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<div id="imageContainer" style="display: block;">
<img id="img" onerror="this.src='/img/none.png'"></img>
</div>
<div id="iframeContainer" style="display: none;">
<iframe id="iframe" src="" width="100%" height="100%"></iframe>
</div>
</body>
</html>