-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 2.4 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
<!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" />
<title>Encriptador de texto | Krlos Morales</title>
<link rel="shortcut icon" href="./imgs/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="styles.css" />
<script src="app.js" defer></script>
</head>
<body>
<main>
<section>
<article class="user-interactivity">
<header class="encrypt__header">
<img src="./imgs/Logo.png" alt="Logo de Alura" />
<h1>Encriptador de texto</h1>
</header>
<form id="encryptForm" class="encrypt-form">
<textarea name="userInput" id="userInput" autocomplete="off" placeholder="Encripta tu texto aquí" cols="30" rows="10"></textarea>
<span><img src="./imgs/info.png" width="20" height="20" alt="ícono de información" /> Solo letras minúsculas sin acentos</span>
</form>
<div class="encrypt-buttons">
<button id="encryptBtn" class="encrypt-buttons__encrypt">Encriptar</button>
<button id="decryptBtn" class="encrypt-buttons__decrypt">Desencriptar</button>
</div>
</article>
<aside class="encrypted-response">
<article id="placeholderInfo">
<img src="./imgs/Muñeco.png" width="250" alt="avatar para los mensajes no encontrados" />
<h2 class="placeholder__title">Ningún mensaje fue encontrado</h2>
<p id="warning" class="placeholder__text">Ingresa el texto que desees encriptar o desencriptar</p>
</article>
<article id="decryptedInfo" class="hidden">
<p id="decryptedText" class="decrypted-text"></p>
<button id="decryptedCopyBtn" class="encrypt-buttons__decrypt">Copiar</button>
</article>
</aside>
</section>
<footer>
<p>Hecho con ❤️ por Krlos Morales</p>
<a href="https://github.com/KrlosPK" target="_blank"><img src="./imgs/github.png" alt="Logo de GitHub" width="24" height="24" /></a>
<a href="https://www.linkedin.com/in/krlos-morales/" target="_blank"
><img src="./imgs/logotipo-de-linkedin.png" alt="Logo de Linkedin" width="24" height="24"
/></a>
</footer>
</main>
</body>
</html>