-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdecrypter.html
38 lines (26 loc) · 850 Bytes
/
decrypter.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>
<head>
<link rel="stylesheet" href="style/style.css"/>
<script type="text/javascript" src="js/lib/jquery-2.0.3.js"></script>
<script type="text/javascript" src="js/logic.js"></script>
</head>
<body id="decrypter">
<div class="drop-wrapper">
<div id="where" class="drop-zone">Drop the crypted image here<br>
</div>
</div>
<div class="result-wrapper invisible">
<div style="margin: 10px 0">
<div id="decrypt" class="button blue" style="width: 620px;">DECrypt image</div>
</div>
</div>
<img id="given" alt="crypted">
<div class="res invisible" style="text-align: center">
<span class="caption">Here You Go</span>
<img id="result" src="">
<div id="repeat" class="button blue" style="margin:20px auto; width: 120px;">One more time</div>
</div>
<canvas id="handler" class="invisible"></canvas>
</body>
</html>