-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (61 loc) · 4.72 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
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/style.css">
<title>Encriptador de Texto</title>
</head>
<body>
<header class="encabezado">
<nav class="encabezado__nav">
<img src="./assets/Logo.png" alt="Logo de Alura Latam">
</nav>
</header>
<main class="presentacion">
<section class="presentacion__seccion">
<h1 class="presentacion__seccion__titulo">Encriptador/Desencriptador de Texto</h1>
<textarea class="presentacion__seccion__areaTexto" name="texto" id="texto" cols="30" rows="10" placeholder="Ingrese el texto aquí"></textarea>
<div class="presentacion__seccion__advertencia">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-exclamation-circle-fill" viewBox="0 0 16 16">
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4m.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2"/>
</svg>
<p class="presentacion__seccion__advertencia__parrafo">Solo letras minúsculas, sin acentos y sin caracteres especiales</p>
</div>
<div class="presentacion__seccion__botones">
<button class="presentacion__seccion__botones__encriptar" id="encriptar" onclick="encriptar();">Encriptar</button>
<button class="presentacion__seccion__botones__desencriptar" id="desencriptar" onclick="desencriptar();">Desencriptar</button>
<button class="presentacion__seccion__botones__borrar" id="borrar" onclick="borrar();">Borrar</button>
</div>
</section>
<section class="presentacion__apartado" id="apartado">
<textarea class="presentacion__apartado__areaTexto" name="nuevoTexto" id="nuevoTexto" cols="30" rows="10" disabled hidden></textarea>
<div class="presentacion__apartado__parrafos" id="imagenParrafos">
<img class="presentacion__apartado__parrafos__imagen" src="./assets/Muneco.png" alt="Muñeco con lupa">
<p class="presentacion__apartado__parrafos__parrafo1">Ningún mensaje fue encontrado</p>
<p class="presentacion__apartado__parrafos__parrafo2">Ingresa el texto que desees encriptar o desencriptar.</p>
</div>
<div class="presentacion__apartado__boton">
<button class="presentacion__apartado__boton__copiar" id="copiar" onclick="copiar();" hidden>Copiar</button>
</div>
</section>
</main>
<footer class="footer">
<p class="footer__parrafo">Challenge de Alura Latam desarrollado por <strong>Sergio Zuñiga Fraga</strong> en 2024</p>
<div class="footer__enlaces">
<a class="footer__enlaces__link" href="https://www.linkedin.com/in/sergio-zuniga-fraga/">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854zm4.943 12.248V6.169H2.542v7.225zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248S2.4 3.226 2.4 3.934c0 .694.521 1.248 1.327 1.248zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016l.016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225z"/>
</svg>
</a>
<a class="footer__enlaces__link" href="https://github.com/SergioZF09">
<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27s1.36.09 2 .27c1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.01 8.01 0 0 0 16 8c0-4.42-3.58-8-8-8"/>
</svg>
</a>
</div>
</footer>
<script src="./js/script.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</body>
</html>