forked from alura-challenges/challenge-one-encriptador-latam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencriptador.html
33 lines (29 loc) · 1.04 KB
/
encriptador.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Encriptador</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css.css">
</head>
<body>
<div id="area">
<header>ENCRIPTADOR</header>
<P></p>
<form id="form" class="topBefore">
<textarea id="texto-encriptar" type="text" placeholder="Escribe el texto a encriptar."></textarea>
<input id="btn1" type="submit" value="ENCRIPTAR">
<input id="btn2" type="submit" value="DESCIFRAR">
</form>
<form id="form" class="topBefore">
<textarea id="txtEncript" type="text" placeholder="Aquí aparecerá tu mensaje encriptado."></textarea>
<input id="btnCopy" type="submit" value="COPIAR">
</form>
<footer class="footer">
Hecho por Jesus Garcia
</footer>
</div>
</div>
<script src="encriptar.js"></script>
</body>
</html>