-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (38 loc) · 2.02 KB
/
Copy pathindex.html
File metadata and controls
54 lines (38 loc) · 2.02 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset = "UTF-8">
<meta name="viewport" content="width=device-width">
<title>Encriptador de Texto</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
</head>
<body class="conteiner">
<div class="titulo">
<img src="Imagenes/logo.png" class="logo">
</div>
<div class="entrada_encriptador">
<textarea type="text" class="input_text" id="entrada_texto" autofocus placeholder="Ingrese el texto aquí" required></textarea>
</div>
<div>
<h3 id="condicion_botones"><img src="Imagenes/alerta_condicion.png" >Letras minúsculas y sin acentos</img></h3>
</div>
<div class="botones">
<button type="button" class="boton_encriptar" id="botones_aspecto">Encriptar</button>
<button type="button" class="boton_desencriptar" id="botones_aspecto">Desencriptar</button>
</div>
<div class="ocultar_vacio" id="ocultar_vacio">
<img src="Imagenes/Muñeco.png" class="muñeco_salida"></img>
<h1 class="texto_vacio">Ningún mensaje fue encontrado</h1>
<h2 class="texto_ingresar">Ingresa el texto que desees encriptar o desencriptar.</h2>
</div>
<div class="ocultar_encriptado" id="ocultar_encriptado">
<textarea type="text" class="output_text" id="salida_texto" readonly></textarea>
<button type="button" class="boton_copiar">Copiar</button>
</div>
<script src="encriptador.js"></script>
</body>
</html>