-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (41 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
63 lines (41 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"; name="viewport" content="width=device-width, initial-scale=1">
<title> Encriptador Alura - Oracle</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="logo"><img src="img/Logo.png"></h1>
</header>
<main class="contenedor">
<section class="seccionCaja">
<div class="text-area"><textarea name="text" id="cajon" class="cajon-texto" cols="5" rows="10" placeholder="Ingrese el texto aquí" autofocus></textarea></div>
<div class="buttons">
<button onclick=btnEncriptar(); type="button" class="encriptar"><span class="textButtonEnc">Encriptar</span></button>
<button onclick=btnDesencriptar(); type="button" class="desencriptar"><span class="textButtonDes">Desencriptar</span></button>
</div>
</section>
<div class="rectanguloRespuesta">
<section class="estadoInicial">
<h2>
<img class="muñeco" src="img/Muñeco.png">
</h2>
<h3 id="sinmensaje">
Ningún mensaje fue encontrado
</h3>
<p class="aviso">Ingresa el texto que desea desencriptar</p>
</section>
<section class="resultado">
<div class="alineaTexto"><p id="msg"></p></div>
<button onclick=btnCopiar(); class="btnCopiar" id="copiar" type="button">Copiar</button>
</section>
</div>
</main>
<footer>
<p>By Masmela brothers - Nelson & Dylan</p>
</footer>
<script src="app.js"></script>
</body>
</html>