-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 1.68 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
<html>
<head>
<meta charset="UTP-8" />
<title>Stegnaography Tool</title>
<link rel="stylesheet" href="css/main.css" />
<script src="steganography.min.js"></script>
</head>
<body>
<div class="section">
<div class="container">
<div class="header">
<h1>Stegnaography Tool</h1>
</div>
<div class="hide-data">
<h2>Hide Data</h2>
<input
name="pic"
accept="image/*"
onchange="readURL(this);"
class="cover-file"
type="file"
name="cover"
/>
<textarea
placeholder="Enter a text to hide it"
id="text"
class="hide-msg"
></textarea>
<input
class="hide-btn"
type="button"
value="Hide"
onclick="hideText()"
/>
<div class="img-cont">
<div class="">
<h5>Message Encoded Image</h5>
<img id="image2" src="" alt="" />
</div>
</div>
</div>
<hr />
<div class="extract-data">
<h2>Extract Data</h2>
<input
class="cover-file"
type="file"
name="cover"
onchange="decode(this);"
/>
<h3>Your hidden information:</h3>
<div id="decoded" class="extracted-msg"></div>
</div>
<div class="footer">
Created By
<a target="_blank" href="https://o2sa.github.io/Steganography-Tool/"
><span class="my-acc">Osama</span></a
>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>