-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (52 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EMS</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="top-toolbar">
<div class="toolbar-left">
<a href="https://bento.me/adityasinh" target="_blank">
<img src="assets/aditya.png" alt="My Logo" class="toolbar-logo">
</a>
<a href="https://bento.me/adityasinh" target="_blank" class="toolbar-link"><b>Adityasinh Sodha</b></a>
</div>
<div class="toolbar-center">
<a href="https://github.com/Adityasinh-Sodha" target="_blank">
<img src="assets/github-mark-white.png" alt="GitHub Logo" class="toolbar-logo">
</a>
<a href="https://gitlab.com/Adityasinh-Sodha" target="_blank">
<img src="assets/gitlab-mark-white.png" alt="GitLab Logo" class="toolbar-logo">
</a>
<a href="https://codepen.io/Adityasinh-Sodha" target="_blank">
<img src="assets/codepen-mark-white.png" alt="Codepen Logo" class="toolbar-logo">
</a>
</div>
</div>
<div class="container">
<h1>Encrypted-Messaging-System</h1>
<div>
<label for="encode-text">Enter text to encode:</label><br>
<textarea id="encode-text" rows="5" cols="50"></textarea>
</div>
<div>
<label for="encoded-text">Encoded Text:</label><br>
<input type="text" id="encoded-text" readonly>
<button onclick="copyToClipboard()">Copy</button>
</div>
<div>
<label for="decode-text">Enter encoded text to decode:</label><br>
<input type="text" id="decode-text">
<button onclick="decodeTextInput()">Decode</button>
</div>
<div>
<label for="decoded-text">Decoded Text:</label><br>
<textarea id="decoded-text" rows="5" cols="50"></textarea>
</div>
</div>
<script src="index.js"></script>
</body>
</html>