-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
87 lines (58 loc) · 2.36 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!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="myStyles.css">
<link rel="shortcut icon" href="Imagenes/original.png" type="image/x-icon">
<script defer src="encripted.js"></script>
<title>Encriptador</title>
</head>
<body>
<header>
<h1>Encriptador</h1>
</header>
<img src="./Imagenes/Logo.png" alt="" />
<main class="section">
<form class="myForm">
<div class="container">
<textarea name="texto" placeholder="Escriba su texto aqui" class="center" id="textAreaUser"></textarea>
<div class="container">
<img src="./Imagenes/espera.jpg" alt="" id="myLogo" />
<span>Solo letras minúsculas y sin acentos.</span>
</div>
</div>
<!-- Buttons -->
<div class="center">
<button type="submit" id="btnEncrypted" class="">Encriptar</button>
<button type="submit" id="btnDecrypted" class="">Desencriptar</button>
</div>
</article>
</form>
<article id="encryptedMessage">
<div class="center">
<div class="imgContainer" id="codingArea">
<img src="./Imagenes/Muñeco.png" alt="Ningun Mensaje" />
</div>
<div class="center" id="foundMessage">
<h2>Ningún mensaje fue encontrado</h2>
<p>Ingresa el texto que desees encriptar o desencriptar</p>
</div>
<div class="center">
<button type="submit" id="copy" class="">copiar</button>
</div>
</div>
</article>
</main>
<footer>
<div class="copyright">
<p> © Yamid Heli Vargas 2022</p>
<div class="redes">
<a href="https://github.com/yamidvargas " target="_blank "><img class="imgRedes" src="Imagenes/git.png " alt="Github "></a>
<a href="https://www.linkedin.com/in/yamid-vargas-9b8a37222/ " target="_blank "><img class="imgRedes " src="Imagenes/link.png " alt="Linkedin "></a>
</div>
</div>
</footer>
</body>
</html>