-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 1.43 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
<!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.css">
<title>Decodificar</title>
</head>
<body>
<div class="notification_copy inactive">Copiado en el cortapapeles</div>
<img class="logo" src="img/Logo.png" alt="Alura">
<div class="container" id="container">
<div class="codificado" id="codificado">
<textarea type="text" id="texto_decode" placeholder="Ingresa un texto aqui" pattern="\w"></textarea>
<footer><svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 20 20"><path fill="currentColor" d="M2.93 17.07A10 10 0 1 1 17.07 2.93A10 10 0 0 1 2.93 17.07M9 5v6h2V5zm0 8v2h2v-2z"/></svg>Solo letras minúsculas y sin acentos</footer>
<div class="buttons">
<button id="encriptar_btn" class="encriptar_btn">Encriptar</button>
<button id="desencriptar_btn" class="desencriptar_btn">Desencriptar</button>
</div>
</div>
<div class="decodificar" id="decodificar">
<div class="no_executed">
<img src="img/Muñeco.png" alt="Muñeco">
<h1>Ningún mensaje fue encontrado</h1>
<p>Ingresa el texto que desees encriptar o desencriptar.</p>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>