-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 882 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Secret Sharing Demo</title>
<link href="style.css" rel="stylesheet" />
<script src="application.js"></script>
</head>
<body>
<h1>Secret Sharing Demo</h1>
<div>
<label>Original Image</label>
<canvas id="original_image" width="130" height="130"></canvas>
</div>
<div id="shares">
<div>
<label>Share 1</label>
<canvas id="share_1" width="130" height="130"></canvas>
</div>
<div>
<label>Share 2</label>
<canvas id="share_2" width="130" height="130"></canvas>
</div>
<div>
<label>Share 3</label>
<canvas id="share_3" width="130" height="130"></canvas>
</div>
</div>
<div id="playground_div">
<canvas id="playground" width="300" height="300"></canvas>
</div>
</body>
</html>