-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (50 loc) · 2.66 KB
/
Copy pathindex.html
File metadata and controls
53 lines (50 loc) · 2.66 KB
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
<!--
https://github.com/cesargh/encriptador-de-texto
v1.0 | 2024-07-01
License: None (Public Domain)
-->
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon-16x16.png">
<link rel="stylesheet" href="styles/reset.css">
<link rel="stylesheet" href="styles/responsive.css">
<title>Encriptador de Texto</title>
</head>
<body>
<header class="body__header">
<nav class="header__nav">
<a class="header__nav__anchor" href="index.html">Inicio</a>
<a class="header__nav__anchor" href="about.html">Acerca de...</a>
</nav>
</header>
<main class="body__main">
<h1 class="main__title">Encriptador de Texto</h1>
<div class="main__div">
<section class="div__section div__section__input">
<textarea id="textareaInput" class="textarea__default" placeholder="Ingresa el texto aquí." onpaste="synchTextareaOutput(false);" onkeydown="synchTextareaOutput(true);" onkeyup="delayCallback('synchTextareaOutput(false)');"></textarea>
<p id="paragraphStatusInput">Sólo letras minúsculas sin acentos.</p>
<div class="section__buttons">
<button id="buttonEncrypt" type="button" class="button__default button__encrypt" onclick="onclickButtonEncrypt(true);">Encriptar</button>
<button id="buttonDecrypt" type="button" class="button__default button__decrypt" onclick="onclickButtonEncrypt(false);">Desencriptar</button>
<button id="buttonPaste" type="button" class="button__default" onclick="onclickButtonPaste();">Pegar</button>
</div>
</section>
<section class="div__section div__section__output">
<textarea id="textareaOutput" class="textarea__default textarea__output__waiting" readonly></textarea>
<p id="paragraphStatusOutput"> </p>
<div class="section__buttons">
<button id="buttonCopy" type="button" class="button__default" onclick="onclickButtonCopy();">Copiar</button>
</div>
</section>
</div>
</main>
<footer class="body__footer">
<p>Desarrollado en Julio de 2024 por César para <a class="footer__anchor" target="_blank" rel="external" href="https://app.aluracursos.com/form-one/registro/latam-general">ONE + Alura Latam</a></p>
</footer>
<script type="text/javascript" src="app.js" defer></script>
</body>
</html>