-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (76 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
<!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" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<main>
<div class="main-container">
<div class="img-container">
<img src="assets/img/logo.png" alt="logo App" />
</div>
<div class="form-container">
<div class="input-container">
<span
id="text"
class="textarea"
role="textbox"
contenteditable
></span>
</div>
<div class="decorationP">
<img id="warning1" src="assets/img/errorLogo.svg" alt="" />
<p class="warning" id="warning2">Solo letras minúsculas y sin acentos</p>
</div>
<div class="button-container">
<button onclick="encryptFunction()" class="btn_encriptar">
Encriptar
</button>
<button onclick="decryptFunction()" class="btn_desencriptar">
Desencriptar
</button>
</div>
</div>
<div class="info-container">
<div class="noText" id="noText">
<img src="assets/img/enigmaMachine.png" alt="Maquina Enigma" />
<div class="text_info">
<h2>
Ningún mensaje fue <br />
encontrado
</h2>
<p>
Ingresa el texto que desees encriptar o <br />
desencriptar.
</p>
</div>
</div>
<div class="withText" id="withText" style="display: none">
<span
id="workingText"
class="workingText"
role="textbox"
></span>
<div class="btnCopy-container">
<button onclick="copyText()">Copiar</button>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-container">
<div>
<a href="https://github.com/Kenfu03?tab=repositories" target="_blank">Git Hub</a>
<a href="https://www.linkedin.com/in/kenfu03/" target="_blank">Linkedin</a>
</div>
<p>Challenge Encrypter ONE</p>
<p>Proyecto Personal Kenneth Fuentes</p>
</div>
</footer>
</main>
<script src="main.js"></script>
</body>
</html>