-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (32 loc) · 1.08 KB
/
Copy pathindex.html
File metadata and controls
45 lines (32 loc) · 1.08 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Encriptador</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<!-- <h1>Encriptador</h1> -->
<div class="container">
<div class="logo">
<img src="img/logo.png">
</div>
<div class="left">
<input class="text-input" id="inputText" type="text" placeholder="Ingrese el texto aqui">
</div>
<div class="right">
<img src="img/muneco.png" id="imgDer">
<h1 id="texto1">Ningún mensaje fue encontrado</h1>
<textarea id="texto2">Ingrese el texto que desea encriptar o desencriptar</textarea>
<button id="btn-copiar" onclick="copiar()">Copiar</button>
</div>
<div class="buttons">
<p id="p">Solo minusculas y sin acentos</p>
<button type="button" id="btn-encriptar" onclick="encriptar()">Encriptar</button>
<button type="button" id="btn-desencriptar" onclick="desencriptar()">Desencriptar</button>
</div>
</div>
</body>
</html>