-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
67 lines (64 loc) · 3.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="icon" href="images/icon.png" type="image/x-icon">
<!-- HTML Meta Tags -->
<title>eNCRYPTEXT</title>
<meta name="description" content="Unlock a hidden language of symbols! Transform text into a secret code that's as enigmatic as it is fun. Dive into the world of mysterious emoji transformations and share messages like never before. 🤐🌟🔮">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://encryptxt.netlify.app/">
<meta property="og:type" content="website">
<meta property="og:title" content="eNCRYPTEXT">
<meta property="og:description" content="Unlock a hidden language of symbols! Transform text into a secret code that's as enigmatic as it is fun. Dive into the world of mysterious emoji transformations and share messages like never before. 🤐🌟🔮">
<meta property="og:image" itemprop="image"
content="https://github.com/VividhPandey003/encryptext/blob/main/images/metaimage.png?raw=true">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="encryptxt.netlify.app">
<meta property="twitter:url" content="https://encryptxt.netlify.app/">
<meta name="twitter:title" content="eNCRYPTEXT">
<meta name="twitter:description" content="Unlock a hidden language of symbols! Transform text into a secret code that's as enigmatic as it is fun. Dive into the world of mysterious emoji transformations and share messages like never before. 🤐🌟🔮">
<meta name="twitter:image"
content="https://github.com/VividhPandey003/encryptext/blob/main/images/metaimage.png?raw=true">
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@900&family=Poppins:wght@400;500;600&display=swap"
rel="stylesheet">
<script defer src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"
integrity="sha512-E8QSvWZ0eCLGk4km3hxSsNmGWbLtSCSUcewDQPQWZF6pEU8GlT8a5fF32wOl1i8ftdMhssTrF/OhyGWwonTcXA=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script defer src="script.js"></script>
</head>
<body>
<div id="main">
<h1 id="glow">Text <span><img src="images/arrow.png" alt=""></span>Emojis</h1>
<div id="endec-div">
<h3 id="enc-btn"><span><img src="images/padlock.png" alt=""></span>Encrypt Text</h3>
<h3 id="dec-btn"><span><img src="images/open-padlock.png" alt=""></span>Decrypt Text</h3>
</div>
<div id="encryption">
<h5>1. Type a message</h5>
<textarea placeholder="Write your text here" id="txtmsg" cols="30" rows="10"></textarea>
<h5>2. Set a Password</h5>
<input type="password" name="" placeholder="E.g batman" id="password">
<button id="encrypt-btn"><span><img src="images/padlock.png" alt=""></span>Encrypt Text</button>
</div>
<div id="decryption">
<h5>1. Paste encrypted emojis.</h5>
<textarea placeholder="Paste encrypted emojis here" id="emojimsg" cols="30" rows="10"></textarea>
<h5>2. Type the Password</h5>
<input type="password" placeholder="E.g. shush" id="finalpassword">
<button id="decrypt-btn"><span><img src="images/open-padlock.png" alt=""></span>Decrypt Emoji</button>
</div>
<div id="result"></div>
<footer id="foot">
<p>Engineered by <span><a href="https://www.linkedin.com/in/vividhpandey/"
target="_blank">Vividh</a></span></p>
</footer>
</div>
</body>
</html>