-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (56 loc) · 2.1 KB
/
index.html
File metadata and controls
62 lines (56 loc) · 2.1 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
<!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>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img class="logo" src="./Img/Logo.png" alt="Logo">
</header>
<main class="presentacion">
<div class="nota">
<!-- <input class="input__text" type="text" placeholder="Ingrese el texto aqui">-->
<div>
<h6 class="texto__parrafo"></h6>
</div>
<textarea id="texto" class="text__area" cols="30" rows="10" placeholder="Ingrese el texto aqui"></textarea>
<div class="img__p">
<img class="exclamation__img" src="./Img/exclamation.png">
<p class="nota__p">Solo letras minúsculas y sin acentos</p>
</div>
<div class="button">
<button class="button__encriptar" onclick=encriptar()>Encriptar</button>
<button class="button_desencriptar" onclick=desencriptar()>Desenciptar</button>
</div>
</div>
<div class="resultado">
<img class="muñeco" src="./Img/Muñeco.png" alt="" id="muneco">
<div class="div__text1">
<p class="text__desc_muñeco" id="titulo">Ningún mensaje fue encontrado</p>
</div>
<div class="div__text__dos">
<p class="text__desc_muñeco__dos" id="parrafo">Ingresa el texto que deseas encriptar o desencriptar.</p>
</div>
<!-- <h2 class="texto__cifrado" > hola</h2>-->
<div id="caja" style="display: none">
<textarea id="encriptado" class="text__area__encriptado" cols="30" rows="10" ></textarea>
</div>
<div id="copy1" style="display: none">
<button class="button__copy" id="copy" onclick=copy()>Copy</button>
</div>
</div>
</main>
<footer>
<div>
<span class="nombre">FRANCISCO JAVIER MIRELES HERRERA</span>
<span class="nombre">-2024</span>
</div>
</footer>
<script src="app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>