-
Notifications
You must be signed in to change notification settings - Fork 0
/
server.html
49 lines (49 loc) · 1.55 KB
/
server.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
<!DOCTYPE html>
<html>
<head>
<title>Share images</title>
<link rel="stylesheet" href="/styles/server.css" />
<!--<script src="/script/common.js"></script>-->
<script src="/script/server.js" type="module"></script>
<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="stylesheet" href="./styles.css" />
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<div class="root">
<div class="current">
<div id="imageContainer" style="display: block">
<img id="img" onerror="this.src='/img/none.png'" />
</div>
<div id="iframeContainer" style="display: none">
<iframe id="iframe" src="" width="100%" height="100%"></iframe>
</div>
</div>
<div class="preview">
<img id="previewImg" />
</div>
<div class="select">
<p>
<input type="text" id="extImgInput" />
<button id="updateExtImg">External Image</button>
</p>
<p>
<input type="text" id="iframeInput" />
<button id="updateIframe">Iframe</button>
</p>
<p>
<button id="updateList">Update Image List</button>
</p>
<hr />
<h3>Directories</h3>
<ul id="dirs"></ul>
<hr />
<h3>Images</h3>
<ul id="images"></ul>
</div>
</div>
<table></table>
</body>
</html>