-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
94 lines (81 loc) · 3.31 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Mystery Vault </title>
<link rel="icon" href="favicon.png" type="image/png">
<!-- Load font awesome icons -->
<link rel = "stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-
awesome.min.css">
<link rel="stylesheet" href="style.css">
<script src='sjcl.js' type='text/javascript'></script>
<script src='main.js' type='text/javascript'></script>
</head>
<body>
<header>
<!--We will add navigation bar here-->
</header>
<!-- The social media icon bar -->
<div class="icon-bar">
<a href="https://www.facebook.com/DscIGDTUW/posts/" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="https://twitter.com/dscigdtuw?lang=en" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="https://github.com/dscigdtuw" class="github"><i class="fa fa-github"></i></a>
<a href="https://in.linkedin.com/company/dscigdtuw" class="linkedin"><i class="fa fa-linkedin"></i></a>
<a href="https://www.youtube.com/c/DSCIGDTUW" class="youtube"><i class="fa fa-youtube"></i></a>
</div>
<div id="desktop_1">
<center>
<h2 id="mystery">Mystery Vault</h2>
<h3 id="description">A Steganography tool.</h3>
</center>
<center>
<a href="#desktop_2" class="getstarted">Get Started</a>
<br><br><br>
</center>
</div>
<div id="desktop_2">
<center>
<br><br>
<label for="img">Choose an image:</label>
<br><br>     
<input type="file" id="img" name="img" accept="image/*">
<br><br>
<div>
<canvas id="canvas" class="hide" width="259" height="194"></canvas>
</div>
</center>
<br><br>
<center>
<label for="password">Password:</label>
<br>
<input type="password" id="password" name="password" minlength="3" maxlength="15" rows="1"> </textarea>
<br>
<label for="secretd"> Secret Message:</label>
<div id = "secretd" >
</div>
<div id = "secretz" >
<textarea id="secrete" name="secret" maxlength="1000" rows="1" cols="26"> </textarea>
</div>
<br>
<input type="submit" id = "encode" value="Encrypt" class="button">
<input type="submit" id ="decode" value="Decrypt" class="button">
<br><br>
<img id = "output" />
</center>
</div>
<div id="about">
<center>
<br><br><br><br><br><br>
<h2 id="aboutus" >About Us</h2>
<p class="description">
Steganography is the practice of concealing a message within another <br>
message or a physical object. In computing/electronic contexts, a computer <br>
file, message, image, or video is concealed within another file, message, <br>
image, or video.
</p>
</center>
</div>
</body>
</html>