-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
69 lines (68 loc) · 3.49 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Cryptify</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="tittle">
<p data-text="Criptify">Criptify</p>
</div>
</header>
<main>
<div><video type="video" id="videobg" autoplay muted loop poster="background.mp4"><source src="background.mp4"></video></div>
<section class="section1">
<textarea class="inputText" name="" id="inputText" cols="35" rows="20" placeholder="Ingrese su texto aquí:
(solo letras minúsculas, sin caracteres especiales ni acentos)."></textarea>
<div class="buttons">
<button class="cybr-btn" id="encrypt" type="button" value="Encriptar">Encriptar<span aria-hidden>_</span>
<span aria-hidden class="cybr-btn__glitch">Encriptar_</span>
<span aria-hidden class="cybr-btn__tag">ONE</span></button>
<button class="cybr-btn" id="decrypt" type="button" value="Desencriptar">Desencriptar<span aria-hidden>_</span>
<span aria-hidden class="cybr-btn__glitch">Desencriptar_</span>
<span aria-hidden class="cybr-btn__tag">ONE</span></button>
</div>
</section>
<section class="section2">
<textarea class="textOutput" name="" id="textOutput" cols="35" rows="20"></textarea>
<div id="message"><h1>Ningún mensaje fue encontrado</h1></div>
<div class="buttons">
<button class="cybr-btn" onclick="copy()">Copiar<span aria-hidden>_</span>
<span aria-hidden class="cybr-btn__glitch">Copiar_</span>
<span aria-hidden class="cybr-btn__tag">ONE</span></button>
</div>
</section>
</main>
<script src="engine.js"></script>
<script src="copy.js"></script>
<script>
var buttonpress = document.getElementById("encrypt");
var textmessage = document.getElementById("message");
buttonpress.addEventListener("click", function(){
textmessage.style.display = "none";
})
</script>
<footer>
<ul class="icons">
<a href="https://www.linkedin.com/in/kiamel-coello-672727226/" target="_blank"><img class="linkedIn" src="logoLinkedin.png" alt="logo linkedin"></a>
<a href="https://www.instagram.com/kiamelcoello/" target="_blank"><img class="instagram" src="logoInstagram.png" alt="logo instagram"></a>
<a href="https://github.com/SirLemaik" target="_blank"><img class="gitHub" src="logoGithub.png" alt="logo github"></a>
</ul>
</footer>
</body>
</html>
<!-
_ _ _ _ _ _
| | | | (_) | | (_| |
_ __ ___ __ _ __| | ___ | |__ _ _ ___ _ _ __| | ___ _ __ ___ __ _ _| | __
| '_ ` _ \ / _` |/ _` |/ _ \ | '_ \| | | | / __| | '__| |/ _ | '_ ` _ \ / _` | | |/ /
| | | | | | (_| | (_| | __/ | |_) | |_| | \__ | | | | | __| | | | | | (_| | | |
|_| |_| |_|\__,_|\__,_|\___| |_.__/ \__, | |___|_|_| |_|\___|_| |_| |_|\__,_|_|_|\_\
__/ |
|___/
->