-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (57 loc) · 2.78 KB
/
Copy pathindex.html
File metadata and controls
65 lines (57 loc) · 2.78 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
54
55
56
57
58
59
60
61
62
63
64
65
<!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">
<title>Desafío | Programa de Encriptación</title>
<!-- <link rel="stylesheet" href="/challengeScrambler/styleEncrypter.css"> -->
<link rel="stylesheet" href="styleEncrypter.css">
<script type="text/javascript" src="codeEncrypter.js"></script>
</head>
<body>
<div class="principalContainer">
<div class="encrypterHeader">
<img class="isotypeAlura" src="images/isotypeAlura.png" alt="Isotipo Plataforma Alura">
<!-- <p class="onlineAlura"> Cursos Online ALURA </p> -->
<br>
<h1 class="encrypterTitle"> Encriptador de Mensajes </h1>
</div>
<div class="encrypterBody">
<div class="textContainer">
<div class="leftContainer">
<textarea name="" class="textareaConverter" id="inputTextarea" cols="27" rows="8" placeholder="Redacta tu mensaje aquí:"></textarea>
<div class="selectionContainer">
<p class="textNote">
Recuerda escribir en letras minúsculas y sin acentos.
</p>
<div class="buttonsContainer">
<div class="buttons">
<button type="button" id="btnEncrypt" onclick="encrypt()">
Encriptar <br> Ahora
</button>
</div>
<div class="buttons">
<button type="button" id="btnDecrypt" onclick="decrypt()">
Desencriptar <br> Texto
</button>
</div>
</div>
</div>
</div>
<div class="rightContainer" align="center">
<img class="munecoAlura" id="imgRight" src="images/munecoAlura.png" alt="Imagen de hombre con lupa.">
<h2 class="headerMuneco" id="titleMunecoH2">¡Ningún mensaje <br> fue encontrado!</h2>
<textarea name="resultOfEncryption" class="textareaEncryption" id="textareaRight" cols="44" rows="2" placeholder="Ingresa el texto que desees encriptar o desencriptar."></textarea>
<button type="button" name="copyButton" class="copyClip" id="clipboardButton" onclick="copyToClipboard()">COPY</button>
</div>
</div>
</div>
</div>
</body>
<footer>
<legend align="center" class="copyright">
ALURA | Todos los Derechos Reservados.
</legend>
</footer>
</html>