-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (44 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Encriptador</title>
<link rel="stylesheet" href="style.css">
<script src="index.js"></script>
</head>
<body>
<header>
<div class="logo">
<img src="img/Logo.png" alt="Logo">
</div>
<label class="title">EncryptOne</label>
</header>
<main>
<form name="form">
<div id="In">
<textarea id=textIn placeholder="Ingrese el texto click aquí"></textarea>
</div>
<div id="flex-container">
<input type="button" id="btnEncrypt" value="Encriptar" onClick="encriptar()" />
<input type="button" id="btnDesEncypt" value="Desencriptar" onClick="desencriptar()"/>
<input type="button" id="btnCopy" value="Copiar" style="display:none" onClick="copiar()"/>
</div>
</form>
<div id="flex-con">
<svg id="simb" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-exclamation-circle-fill" viewBox="0 0 16 16">
<path d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM8 4a.905.905 0 0 0-.9.995l.35 3.507a.552.552 0 0 0 1.1 0l.35-3.507A.905.905 0 0 0 8 4zm.002 6a1 1 0 1 0 0 2 1 1 0 0 0 0-2z"/>
</svg>
<label id="adv">Solo letras minúsculas y sin acentos</label>
</div>
<div id="out">
<img src="img/Muñeco.png" id="muneco" alt="munñco" >
<p id="textOut">En espera de texto a encriptar o desencriptar</p>
</div>
</main>
<footer>
<label id="por">©By YaekOne</label>
</footer>
</body>
</html>