-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.35 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador</title>
<link rel="icon" href="logo.png" type="image/PNG">
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-gray-50 custom-font">
<div class="container">
<div class="left-section">
<div class="logo">
<img src="Logo.png" alt="Logo">
</div>
<div class="input-section">
<label for="texto" class="text-xl text-gray-700 block mb-4">Ingrese el texto aquí</label>
<textarea id="texto" class="textarea" placeholder="Escribe aquí..."></textarea>
</div>
<div class="info flex items-center mb-8 text-gray-500 text-sm">
<i class="fas fa-info-circle mr-2"></i>
<span class="icon-text">
<img src="signo.png" alt="" class="icon-img">
<span class="text">Solo letras minúsculas y sin acentos</span>
</span>
</div>
<div class="buttons">
<button id="encrypt-btn" class="btn-encrypt">Encriptar</button>
<button id="decrypt-btn" class="btn-decrypt">Desencriptar</button>
</div>
</div>
<div class="right-section">
<img id="illustration-img" src="Muñeco.png" alt="Muñeco" class="illustration">
<h3 id="message-title" class="message-title">Ningún mensaje fue encontrado</h3>
<div id="message-container" class="hidden">
<p id="message-text" class="message-text">Ingresa el texto que desees encriptar o desencriptar.</p>
<button id="copy-btn" class="hidden">Copiar Mensaje</button>
</div>
</div>
</div>
<footer class="footer">
<div class="footer_bar d-flex flex-column flex-sm-row align-items-center">
<div class="footer_copyright">
<span>
</script> Este Challenge ha sido desarrollado por
<a href="https://www.instagram.com/alvaro_8713/" target="_blank" class="footer-link">Alvaro Aular</a>
</span>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>