-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (53 loc) · 2.31 KB
/
Copy pathindex.html
File metadata and controls
65 lines (53 loc) · 2.31 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
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
64
65
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador</title>
<link rel="stylesheet" href="./reset.css">
<link rel="stylesheet" href="./estilos.css">
<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=Inter:wght@100..900&display=swap" rel="stylesheet">
</head>
<body>
<main class="contenedor">
<div class="logo">
<img src="./imagenes/Logo.png" alt="El logo es la letra a" id="logo-desktop">
</div>
<section class="principal">
<textarea id="campo-texto" placeholder="Ingrese el texto aquí" ></textarea>
<div class="acciones">
<p id="exclamacion"> ! </p>
<p id="restriccion"> Sólo letras minúsculas y sin acento</p>
<div class="botones">
<button class="boton" id="boton-encriptar" onclick="encriptar()">Encriptar</button>
<button class="boton" id="boton-desencriptar" onclick="desencriptar()">Desencriptar</button>
</div>
</div>
</section>
<section class="resultado">
<!-- Los siguientes div son excluyentes-->
<!-- No se ingresó texto a convertir -->
<div class="sinmensaje">
<img src="./imagenes/Muñeco.svg" alt="niño con lupa mira diamante" id="buscador">
<div class="dosfrases">
<p id="noencontrado">Ningún mensaje fue encontrado</p>
<p class="ingresatexto">Ingresa el texto que desees encriptar o desencriptar</p>
</div>
</div>
<!-- Mostrar el texto convertido-->
<div class="conmensaje">
<p id="texto-convertido"></p>
<div class="copiar">
<button type="button" class="boton" id="boton-copiar">Copiar</button>
</div>
</div>
</section>
</main>
<footer>
<p>Grupo 6. ONE Oracle - Alura Latam 2024 - Desarrollado por Norma Noemí Salcedo</p>
</footer>
</body>
<script src="./script.js"></script>
</html>