-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 1.74 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
<!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>Encriptador de Texto</title>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="estilos.css" />
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon" />
</head>
<body>
<div class="container">
<div class="encriptar">
<textarea
name="texto"
class="texto"
id="texto"
cols="30"
rows="10"
placeholder="Ingrese el texto aquí"
></textarea>
<div class="terminos">
<p>Solo letras minúsculas y sin acéntos</p>
</div>
<div class="botones">
<button class="btn-encriptar" type="button" onclick="encryptText()">
Encriptar
</button>
<input
class="btn-desencriptar"
type="button"
onclick="decryptText()"
value="Desencriptar"
/>
</div>
</div>
<div class="encriptado">
<img src="img/muñeco.png" id="muñeco" alt="" />
<div class="mensaje-encriptado" id="mensaje-encriptado">
<h2 id="titulo-mensaje">Ningún mensaje fue encontrado</h2>
<p id="parrafo">
Ingresa el texto que deseas encriptar o desencriptar
</p>
<textarea
name="mensaje"
id="mensaje"
cols="30"
rows="10"
class="mensaje"
id="mensaje"
></textarea>
</div>
</div>
</div>
</body>
<script src="encriptar.js"></script>
</html>