-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (41 loc) · 1.89 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
50
51
<!DOCTYPE html>
<html lang="es">
<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="css/style.css">
<script src="/js/app.js" type="text/javascript" defer></script>
<script src="/js/eventos.js" type="text/javascript" defer></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;0,500;0,700;1,300&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1><span class="titulo">Encriptador de texto</span></h1>
</header>
<main>
<p class="centrar parrafo">Sólo se admiten letras minúsculas y sin acentos.</p>
<div class="centrar">
<textarea class="text-area" id="text-cifrador" cols="60" rows="10" placeholder="Ingrese el texto aquí"></textarea>
</div>
<span class="centrar" id="error" class="invisible"></span>
<div class="centrar botones">
<button class="boton" id="boton-encriptar">Encriptar</button>
<button class="boton" id="boton-desencriptar">Desencriptar</button>
</div>
<div class="centrar">
<textarea class="text-area" id="text-resultado" cols="60" rows="10" placeholder="Resultado" readonly></textarea>
</div>
<div class="centrar botones">
<button class="boton" id="boton-copiar" type="submit">Copiar</button>
<button class="boton" id="boton-limpiar" type="submit">Limpiar</button>
</div>
</main>
<footer>
<small class="centrar">Copyright © 2022 - Maitena Escalada</small>
</footer>
</body>
</html>