-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (56 loc) · 2.35 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
<!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">
<link rel="shortcut icon" type="image/png" href="images/Vector.png"/>
<!-- title -->
<title>Encriptador</title>
<!-- Import fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;600&family=Pacifico&display=swap" rel="stylesheet">
<!-- Import styles -->
<link rel="stylesheet" href="css/encriptador.css">
<!-- import icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<header>
<div>
<img src="images/Vector.png" alt="logo">
</div>
</header>
<section>
<div class="all-container">
<div class="input-txt">
<textarea name="" id="textToEncript" cols="30" rows="10" placeholder="Ingrese el texto aqui"></textarea>
</div>
<div class="input-warning">
<img src="images/Vectorwarning.png" alt="warning">
<p>Solo letras minúsculas y sin acentos</p>
</div>
<div class="buttons-container">
<button class="buttonss encriptar" id="btnEncript">Encriptar</button>
<button class="buttonss desencriptar" id="btnDesencript">Desencriptar</button>
</div>
</div>
<div class="all-container">
<div class="output-text" id="outputTxt">
<div class="muñeco" id="muñeco">
<img src="images/MuñeconotFound.png" alt="muñeco">
</div>
<div class="msg-not-found" id="divMsgNotFound">
<h3>Ningún mensaje fue encontrado</h3>
<h6>Ingresa el texto que desees encriptar o desencriptar.</h6>
</div>
</div>
<div class="button-copy">
<button class="boton-copy"><i class="fas fa-copy"></i></button>
</div>
</div>
</section>
<script src="js/index.js"></script>
</body>
</html>