-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (57 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
<!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" />
<link
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="style.css?12" />
<title>Text Encription Tool</title>
</head>
<body>
<div class="header">
<h1>Text Encryption Tool With Javascript</h1>
</div>
<div class="container">
<!-- instructions -->
<div class="instructions">
<h2>Instructions</h2>
<ul>
<li>Don't use spanish characters, only english characters.</li>
<li>Use only lowercase letters.</li>
</ul>
</div>
<p id="error_message"></p>
<input
type="text"
name="input_text"
id="input_text"
placeholder="Enter your text"
/>
<div class="buttons_container">
<button id="encrypt_button">Encrypt</button>
<button id="decrypt_button">Decrypt</button>
</div>
<div id="output_text_container">
<p id="output_text">Encrypted Text Here</p>
<div class="buttons_container">
<button id="copy_button">Copy</button>
<button id="clear_button">Clear</button>
</div>
<p id="copied_message">Copied!</p>
</div>
</div>
<!-- Footer with my name -->
<footer>
<p>
©<a href="https://www.linkedin.com/in/michael-hernandez-castillo/"
>Michael Gerardo Hernández</a
>
</p>
</footer>
<script src="script.js?12"></script>
</body>
</html>