-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (34 loc) · 1.45 KB
/
Copy pathindex.html
File metadata and controls
38 lines (34 loc) · 1.45 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
<!DOCTYPE html>
<html lang="pt-br">
<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>Encriptador</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="titulo">Código Secreto</h1>
<main class="main">
<section class="form box">
<form action="">
<label class="ima" for="input-texto">Solo letras minúsculas, sin acento</label>
<textarea class="text-input2" type="text" name="input-texto" id="input-texto" placeholder="Ingrese el texto aqui" cols="60" rows="20"></textarea>
<input class="btn" type="button" " onclick='encriptar()' value="Encriptar!" id="btn-encriptar">
<input class="btn" type="button" onclick='desencriptar()' value="Desencriptar!" id="btn-desencriptar">
<input class="btn" type="button" value="Borrar" id="btn-clear">
</form>
</section>
<section class="msg box">
<h2 id="">Mensaje encriptada:</h2>
<textarea class="text-input" readonly type="text" id="msg" placeholder="Salida de texto"cols="60" rows="20"></textarea>
<input class="btn" type="button" onclick='copy()' value="Copiar" id="btn-copy">
</section>
</main>
<footer>
<h4>Desarrollado por <a href="https://github.com/ima0127?tab=repositories" target="blank">Ismael Peralta</a></h4>
<h3>2022</h3>
</footer>
<script src="script.js"></script>
</body>
</html>