-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (83 loc) · 2.29 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="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
type="image/png"
sizes="16x16"
rel="icon"
href="./assets/img/favicon/favicon-16.png"
/>
<link
type="image/png"
sizes="32x32"
rel="icon"
href="./assets/img/favicon/favicon-32.png"
/>
<link
type="image/png"
sizes="96x96"
rel="icon"
href="./assets/img/favicon/favicon-96.png"
/>
<link
type="image/png"
sizes="120x120"
rel="icon"
href="./assets/img/favicon/favicon-120.png"
/>
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
<link rel="stylesheet" href="./scss/style.css" />
<title>Encriptar|Desencriptar</title>
</head>
<body>
<div class="wrapper">
<section class="logo">
<img src="./assets/img/logo-svg/logo-96.svg" alt="logo-image" />
</section>
<section class="textbox-container">
<textarea
name="plain-text"
id="plain-text"
cols="35"
rows="10"
placeholder="Ingresa el texto a encriptar"
></textarea>
<span
><i class="bx bxs-error-circle"></i> Solo minúsculas, sin
acentos</span
>
<section class="buttons">
<button class="btn btn-encrypt">Encriptar!</button>
<button class="btn btn-decrypt">Desencriptar!</button>
</section>
<div class="box-decrypt-container">
<textarea
name="encrypt-text"
id="encrypt-text"
placeholder="Aquí verás tu mensaje encriptado"
>
</textarea>
<button class="btn btn-copy"><i class="bx bxs-copy-alt"></i></button>
</div>
</section>
</div>
<footer>
<div>
<span>Desarrollado por <strong>Daniel Riverol</strong></span>
<span class="social-item">
<a href=""><i class="bx bxl-linkedin-square"></i></a>
</span>
<span class="social-item">
<a href=""><i class="bx bxl-github"></i></a>
</span>
</div>
<div>© Derechos Reservados 2023</div>
</footer>
<script src="./js/main.js"></script>
</body>
</html>