-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (44 loc) · 1.93 KB
/
index.html
File metadata and controls
47 lines (44 loc) · 1.93 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
<!DOCTYPE html>
<html lang="es-mx">
<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>SecureText</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="/img/SECURE.png" alt="logotipo" class="logo">
</header>
<main class="presentacion" id="presentacion">
<section class="presentacion-contenido">
<textarea class="decifrar" id="decifrar" placeholder="Ingrese el texto aqui" oninput="verificar()" ></textarea>
</textarea>
<div class="presentacion__enlaces">
<p class="recomendacion">
<img src="./img/logo-advertencia.png" class="advertencia">
este encriptador no funciona con letras mayusculas
o con acento (tildes)
</p>
<div class="botones">
<button class="presentacion__enlaces__link" id="encriptar" onclick="encriptar()">Encriptar</button>
<button class="presentacion__enlaces__link" id="desencriptar" onclick="desencriptar()" disabled="true">Desencriptar</button>
</div>
</div>
</section >
<div class="respuesta">
<div class="contenido-salida">
<div class="salida">
<img src="/img/Muñeco.png" class="muñeco">
<h1>Ningún mensaje fue encontrado</h1>
<p>Ingresa el texto que desees encriptar o desencriptar</p>
</div>
</div>
<button class="presentacion__enlaces__link" id="copiar" style="visibility:hidden" onclick="copiar()">copiar</button>
</div>
</main>
<footer></footer>
<script src="app.js"></script>
</body>
</html>