-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (58 loc) · 2.24 KB
/
Copy pathindex.html
File metadata and controls
70 lines (58 loc) · 2.24 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
66
67
68
69
70
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>Encriptador</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<script src="codigo.js"></script>
</head>
<body class="cuerpo">
<header>
<div class="logo">
<h1><img src="Imagenes/Logo.png" alt="Logo de encriptador"></h1>
</div>
</header>
<main>
<section class="campo-encriptador">
<div class="ingreseTexto">
<textarea id="idEncriptador" onclick="limpiarTextArea()" name="textarea" rows="12" cols="25">Ingrese el texto aquí..</textarea>
</div>
<div class="botones">
<h2>Solo letras minusculas y sin acentos</h2>
<div>
<button onclick= encriptar() class="buttonEncriptar">
<span>Encriptar</span>
<button onclick= desencriptar() class="buttonDesencriptar">
<span>Desencriptar</span>
</div>
</div>
</section>
<section id="seccionSinTexto" class="campo-caja">
<div class="caja">
<div class="contenidoCaja">
<img src="Imagenes/Muñeco.png" id="imagen-muneco" alt="imagenes de munecos">
<p class="primera" id="idprimera">Ningun mensaje fue encontrado</p>
<p class="primera">Ingresa el texto que deseas encriptar o desencriptar</p>
</div>
</div>
</section>
<section id="seccionConTexto" class="campo-caja" style="display: none;">
<div class="caja">
<div class="contenidoCaja">
<p id="mensaje">Texto por defecto</p>
</div>
<div>
<button onclick="copiarMensaje()" class="buttonCopiar">
<span>Copiar</span>
</button>
</div>
</div>
</section>
</main>
<footer class="rodapie">
<p class="copyright"> © Copyright Daniel - 2024</p>
</footer>
</body>
</html>