-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (37 loc) · 1.42 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="Permissions-Policy" content="interest-cohort=()">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador de texto version 2,0</title>
<link rel="stylesheet" href="https://constantino76.github.io/Encriptador-Texto/index.css" type="text/css">
<script src="https://constantino76.github.io/Encriptador-Texto/index.js"></script>
</head>
<body >
<h1>Encriptador de texto version 2.0</h1>
<div class="contenedor">
<img src="https://constantino76.github.io/Encriptador-Texto/imagenes/Vector.jpg" id="logo">
<div class="area-c">
<input type="text" id="texto" placeholder="digite el texto a encriptar">
</div>
<div class="area-resultado">
<input type="text" id="resultado">
<img src="https://constantino76.github.io/Encriptador-Texto/imagenes/persona.png" id ="imgpersona" >
<button id="btn-copiar" class="btn-copiar"type="button"onclick="copiarTexto()">Copiar</button>
</div>
</div>
<div class="btn-boton">
<div>
<button type="button"id="btn-encriptar" onclick="encriptador()">Encriptar</button>
</div>
<div> <button type="button"id="btn-desencriptar"onclick="capturar_Texto()">Desencriptar</button>
</div>
</div>
<div class="pie-Pagina">
<footer> Creado por Ronald Retana Umana
</footer>
</div>
</body>
</html>