-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.26 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
<!DOCTYPE html>
<html lang="es">
<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="styles.css">
</head>
<body>
<div class="container">
<div class="input-section">
<div class="logo">a</div>
<h2>Ingrese el texto aqui</h2>
<textarea id="input-text" placeholder="Ingrese el texto aquí..."></textarea>
<div id="validation-message">⚠️ Solo letras minúsculas y sin acentos</div>
<div class="button-group">
<button id="encrypt-button" class="button encrypt">Encriptar</button>
<button id="decrypt-button" class="button decrypt">Desencriptar</button>
</div>
</div>
<div class="output-section">
<img src="ola.png" alt="Image" class="output-image">
<p id="output-placeholder">Ningún mensaje fue encontrado</p>
<textarea id="output-text" readonly></textarea>
<button id="copy-button" class="button copy">Copiar</button>
</div>
</div>
<script src="src/models/encriptador.js"></script>
<script src="src/controllers/script.js"></script>
</body>
</html>