-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (51 loc) · 1.98 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
<!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="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>
<img src="imagenes/LogoAlura.png">
<p class="titulo">Encriptador de texto</p>
<p class="alura">Desafío encriptador Alura latam</p>
</h1>
</header>
<main>
<section class="izq">
<div class="encriptar">
<textarea id="texto-encriptar" class="texto-encriptado" name="texto" oninput="validarTexto()" placeholder="Ingrese el texto aqui" autofocus=""></textarea>
</div>
<div class="Cabeza">
<p> <img src="imagenes/Cabeza.svg" alt="Imagen Caveza" class="img-Cabeza">
Solo letras minusculas y sin acentos</p>
</div>
<div class="boton">
<button class="boton-encriptar" onclick="encriptar();">Encriptar</button>
<button class="boton-desencriptar" onclick="desencriptar();">Desencriptar</button>
</div>
</section>
<section class="derecha">
<div>
<textarea name="texto-encriptado" class="resultado" id="texto-encriptado" cols="30" rows="10" hidden="" readonly=""></textarea>
</div>
<div class="imagen-mensaje" id="imagen-mensaje">
<img src="imagenes/Muñeco.png" alt="muneco">
<h2> No se encontro ningun mensaje</h2>
<h2>Ingresa el mensaje que deseas encriptar<h2>
</div>
<div>
<button class="boton-copiar" id="boton-copiar" onclick="copiarTexto();" hidden="">Copiar</button>
</div>
</section>
</main>
<footer>
Para Alura latam Desaío Encriptador 2024
</footer>
<script src="app.js"></script>
</body>
</html>