-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (34 loc) · 1.68 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
52
53
54
55
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width" >
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles_encrypter.css">
</head>
<body>
<script src="JavaScript/encrypter.js"></script>
<header>
<div class="box">
<h1 class="imagen-alura"><a title="Alura-latam" href="https://www.aluracursos.com"><img src="images/Logo.png" alt="Alura-latam"></h1></a>
<h1 class="Titulo">Encriptador de texto</h1>
</div>
</header>
<main>
<div class="Info">
<label for="linkedinprofile"> Bruno Morales Prado</label>
<input type="image" id="linkedinprofile" alt="Linked-in Profile" src="images/linkedin.png" onclick="Linkedin()">
</div>
<div>
<textarea id="areadetexto" placeholder="Ingrese aquí su texto" required></textarea>
<textarea id="texto-encriptado" disabled></textarea>
</div>
<div class="Note">
<p><b> Nota: </b> solo se permiten letras en minusculas y sin acentos </p>
</div>
<div>
<input type="button" class="Encriptar" value="Encriptar" onclick="encriptar()">
<input type="button" class="Desencriptar" value="Desencriptar" onclick="desencriptar()">
<input type="button" class="Copiar" value="Copiar" onclick="copiarAlPortapapeles()">
</div>
</main>
</body>