-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (40 loc) · 1.7 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Encrypter App</title>
</head>
<body>
<div class="container">
<strong>Aplicación de encriptación y desencriptación de texto como challenge para el programa de Oracle + Alura usando HTML, CSS y Javascript</strong>
</div>
<div class="grid-wrapper">
<div class="entries-container">
<textarea placeholder="Escribe aquí"></textarea>
<div class="main-actions-container">
<button class="btn-encrypt" id="btnEncrypt">Encriptar</button>
<button class="btn-decrypt" id="btnDecrypt">Desencriptar</button>
</div>
</div>
<div class="history-container">
<div class="value-view">
<p id="text-result"></p>
<button onclick="copyClick(this)" class="btn-accent" title="Copiar al cortapapeles">Copiar</button>
</div>
<div class="help-view">
<lottie-player src="https://assets10.lottiefiles.com/packages/lf20_7fwvvesa.json" background="transparent" speed="1" loop autoplay></lottie-player>
<h3><strong>Ningún texto fue encontrado</strong></h3>
<p>Empieza encriptando un texto</p>
</div>
</div>
</div>
<div class="snackbar" id="snackbar">
<p class="snackbar-text"></p>
</div>
<script src="index.js"></script>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
</body>
</html>