-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (75 loc) · 2.92 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Vortx-Steganography</title>
<link rel="icon" type="image/x-icon" href="heart_love_smiley_icon_123396.ico">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css"
integrity="sha256-9mbkOfVho3ZPXfM7W8sV2SndrGDuh7wuyLjtsWeTI1Q="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/Subhankar43/Vortx-Steganography/style.css" />
<script src="https://cdn.jsdelivr.net/gh/Subhankar43/Vortx-Steganography/steganography.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="header">
<h1 class="logo">
V <i class="fa fa-cog fa-spin fa-fw"></i> R T E X
<i class="fa fa-cog fa-spin fa-fw"></i> G R A P H Y
</h1>
</div>
<div class="cont">
<div class="">
<input
class="ui primary button"
type="file"
name="pic"
accept="image/*"
onchange="readURL(this);"
/>
<div class="ui input">
<input id="text" type="text" />
</div>
<button class="ui secondary button" onclick="hideText()">
Click me !
</button>
</div>
<div class="img-cont">
<div class="img1">
<h5 style="font-size:2vw; display:flex">Uploaded Image</h5>
<img id="image1" src=" " alt="" />
</div>
<div class="">
<h5 style="font-size:2vw; display:flex">Encoded Image</h5>
<img id="image2" src=" " alt="" />
</div>
</div>
<div class="">
<input class="ui secondary button" type="file" name="pic" accept="image/*" onchange="decode(this);" />
<img class = "opa" src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" alt="">
<h5 style="font-size: 2vw; display:flex">Decoded Message:</h5>
<h2 id="decoded"></h2>
</div>
<footer class="footer">
<p class="subhankar">
Made with ❤️ By -
<a
href="https://www.instagram.com/subhankarkundu43"
target="_blank"
rel="noreferrer"
>
VortX
</a>
</p>
<a href="https://github.com/Subhankar43/Vortx-Steganography" target="_blank" rel="noreferrer"
><i class="fa-brands fa-github fa-5x center"></i></a>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/gh/Subhankar43/Vortx-Steganography/script.js"></script>
</body>
</html>