-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.75 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
<!DOCTYPE html>
<html lang="es">
<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 rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
<title>Challenge ONE | Encriptador</title>
</head>
<body>
<header class="header">
<img src="img/logo.png" alt="Alura logo" class="logo" />
<h1 class="header-title">Text Encrypter</h1>
</header>
<main class="main-container">
<div class="section-container">
<textarea class="text-area input-text" id="text-input" placeholder="Insert text to encrypt"></textarea>
<div class="alert-container">
<img src="img/exclamation-icon.png" />
<p>Only lowercase text</p>
</div>
<div class="buttons-container">
<button class="button" id="encrypt" onclick="btnEncrypt()">Encrypt</button>
<button class="button" id="decrypt" onclick="btnDecrypt()">Decrypt</button>
</div>
</div>
<div class="section-container">
<textarea class="text-area output-text" id="text-output" readonly></textarea>
<div class="buttons-container">
<button class="button" id="copy" onclick="btnCopy()">Copy</button>
</div>
</div>
</main>
<footer class="footer">
<p>by <a href="https://github.com/Sebastian-GA" target="_blank">@Sebastian-GA</a></p>
</footer>
<script src="js/script.js"></script>
</body>
</html>