-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (56 loc) · 2.49 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
61
62
63
64
65
66
<!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 rel="stylesheet" href="styles/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400&display=swap" rel="stylesheet">
<title>Encriptador de texto</title>
</head>
<body>
<header>
<div class="logo">
<img id="imgLogo" src="img/logo.png" alt="Logo"/>
</div>
</header>
<main class="content">
<section class="content__input">
<textarea placeholder="Ingrese su texto aquí" id='textarea1' oninput="validateInput()"></textarea>
<article class="input__rules">
<img src="img/bi_exclamation-circle-fill.png"/>
<p>Solo letras minusculas y sin acentos</p>
</article>
<div class="container-buttons">
<button class="button button--secondary b2" id="decryptButton" onclick="handleClick('decrypt')">Desencriptar</button>
<button class="button b1" id="encryptButton" onclick="handleClick('encrypt')">Encriptar</button>
</div>
<div id="modal" class="modal">
<div class="modal__content">
<p>El texto debe contener solo letras minúsculas y sin caracteres especiales.</p>
<button id="modal__close">Cerrar</button>
</div>
</div>
</section>
<section class="content__encrypt">
<div class="container-textarea">
<article class="warning" id="warningSection">
<img src="img/muneco.png" alt="">
<p>Ningun mensaje fue encontrado</p>
<span>Ingresa un texto de desees encriptar o desencriptar.</span>
</article>
<div class="results non-visible" id="resultsSection">
<textarea id="textarea2"></textarea>
<button class="button" onclick="copyText()" id="copyButton">Copiar</button>
</div>
</div>
</section>
</main>
<footer class="footer-container">
<p> Developed by Calegriam. Find me on <a href="https://github.com/carlosalegriam">GitHub</a></p>
</footer>
<script src="script/logica.js"></script>
</body>
</html>