-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (66 loc) · 3.55 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
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./img/encriptado.png">
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" media="screen and (max-width: 767px)" href="./css/mobile.css">
<link rel="stylesheet" media="screen and (min-width: 768px) and (max-width: 1023px)" href="./css/tablet.css">
<link href="https://cdn.jsdelivr.net/npm/sweetalert2@11.10.4/dist/sweetalert2.min.css" rel="stylesheet">
<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=Inter&display=swap" rel="stylesheet">
<title>LockText: Tu Solución para Mensajes Seguros</title>
</head>
<body>
<header>
<img class="logo" src="img/logo.png" alt="logo de alura">
</header>
<section>
<div class="titulo">
<p>
<h1>'Encriptador de texto'</h1>
</p>
</div>
<div class="container">
<div class="encriptar">
<textarea name="texto" id="texto" class="texto" cols="30" rows="20"
placeholder="Por favor ingrese el texto aquí"></textarea>
<div class="terminos">
<svg viewBox="0 0 30 30" id="meteor-icon-kit__solid-exclamation-circle" fill="none"
xmlns="http://www.w3.org/2000/svg">
<g id="SVGRepo_bgCarrier" stroke-width="0"></g>
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g>
<g id="SVGRepo_iconCarrier">
<path fill-rule="evenodd" clip-rule="evenodd"
d="M24 12C24 18.6274 18.6274 24 12 24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12ZM10.5 7.5V12C10.5 12.8284 11.1716 13.5 12 13.5C12.8284 13.5 13.5 12.8284 13.5 12V7.5C13.5 6.67157 12.8284 6 12 6C11.1716 6 10.5 6.67157 10.5 7.5ZM12 18C12.8284 18 13.5 17.3284 13.5 16.5C13.5 15.6716 12.8284 15 12 15C11.1716 15 10.5 15.6716 10.5 16.5C10.5 17.3284 11.1716 18 12 18Z"
fill="#495057"></path>
</g>
</svg>
<p>Solo letras minúsculas y sin acentos</p>
</div>
<div class="botones">
<button class="btn-encriptar" type="button">Encriptar</button>
<button class="btn-desencriptar" type="button">Desencriptar</button>
</div>
</div>
<div class="encriptado">
<img src="./img/dog.png" alt="" id="muneco">
<div class="mensaje-encriptado">
<h2 class="titulo-mensaje">No fue encontrado ningun mensaje.</h2>
<p class="parrafo">Ingresa el texto que desees encriptar o desencriptar.</p>
<textarea name="textoFinal" id="textoFinal" cols="30" rows="20"
placeholder="Ingresa el texto que desees encriptar o desencriptar."></textarea>
<button class="btn-copiar" type="button">Copiar</button>
</div>
</div>
</div>
</section>
<script src="/app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<footer>
<p class="copyright">© Copyright "encriptador de texto" 2024. By Juan Nuñez</p>
</footer>
</body>
</html>