-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.33 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
<!DOCTYPE html>
<html lang="es-co">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador de texto</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="input-section">
<h1>Encriptador de texto</h1>
<textarea id="input-text" placeholder="Ingrese el texto aquí..."></textarea>
<div class="buttons">
<button id="encrypt-btn">Cifrar</button>
<button id="decrypt-btn">Descifrar</button>
<button id="clear-input-btn">Limpiar</button>
</div>
<p id="validation-msg"></p>
</div>
<div class="output-section">
<h2>Texto procesado:</h2>
<textarea id="output-text" readonly></textarea>
<img id="muñeco-img" src="./assets/Muñeco.png" alt="Muñeco">
<img id="sinMensaje-img" src="./assets/Frame 5.png" alt="Sin Mensaje">
<div id="output-buttons" class="buttons">
<button id="copy-btn">Copiar</button>
<button id="clear-output-btn">Limpiar</button>
</div>
</div>
</div>
<footer>
<p>Juan Diego Sánchez - ©2024</p>
</footer>
<script src="app.js"></script>
</body>
</html>