-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
175 lines (154 loc) · 5.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Encriptador de Texto</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!---- fontawesome ---->
<script
src="https://kit.fontawesome.com/4d63ed8f35.js"
crossorigin="anonymous"
></script>
<!---- favicon ---->
<link
rel="shortcut icon"
href="./images/logo-favicon-light.svg"
type="image/x-icon"
/>
<!---- 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=Lato:ital,wght@0,400;0,700;0,900;1,400&display=swap"
rel="stylesheet"
/>
<!---- styles ---->
<link rel="stylesheet" href="./css/reset.css" />
<link rel="stylesheet" href="./css/animista.css" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/responsive.css" />
<link rel="stylesheet" href="./css/dark-mode.css" />
</head>
<body>
<!---- Main sections ---->
<main class="container">
<!---- Header ---->
<header class="header-btn">
<img src="images/logo.png" class="logo-title" />
<img src="images/logo_white.png" id="logo-title_white" />
<div class="container-social-darkMode">
<button class="switch-mode" id="switch-mode">
<span><i class="fa-solid fa-moon"></i></span>
<span><i class="fa-solid fa-sun"></i></span>
</button>
</div>
</header>
<!-- field text sections -->
<div class="section-container-main">
<div class="section-text-btn">
<span class="alert bounce-in-top slide-in-top">
<img src="images/icon-head-lose.svg" class="icon-head" />
<img src="images/icon-head-win.svg" class="icon-head" />
Ganaste!
</span>
<div class="text-write">
<textarea
id="inputText"
class="input-text"
type="text"
placeholder="Ingrese el texto aqui"
textarea
></textarea>
</div>
<p class="text-limit">
No se permiten mayusculas ni acentos, ni numeros
</p>
<!---- Buttons sections ---->
<div class="buttons">
<button class="btn" id="encript" type="submit">Encriptar</button>
<button
onclick="decryptText()"
class="btn"
id="decrypt"
type="submit"
>
Desencriptar
</button>
<button
onclick="copyToClipBoard()"
class="fa-solid fa-copy btn"
id="copy-text"
type="button"
></button>
</div>
</div>
<!---- input sections ---->
<div class="input-btn-content">
<div class="text-box disabled">
<p id="text-result"></p>
</div>
<div class="alert-message-box">
<img src="images/robot.png" id="robot-img" class="robot" />
<img src="images/robot_dm.png" id="robot-img_dm" class="robot_dm" />
<p class="alert-message">Ningún mensaje fue encontrado</p>
<p class="alert-message2">
Ingresa el mensaje que desees encriptar o desencriptar.
</p>
</div>
</div>
</div>
<!---- Footer ---->
<footer>
<!-- <div class="container-social">
<a
href="https://github.com/Heric-Olier"
rel="noreferrer"
target="_blank"
class="github social-link"
><i class="fa-brands fa-github"></i>Github</a
>
<a
href=" https://www.linkedin.com/in/heric-olier-36400b238/"
rel="noreferrer"
target="_blank"
class="linkedin social-link"
><i class="fa-brands fa-linkedin"></i>Linkedin</a
>
<a
href=" https://twitter.com/heric_olier"
rel="noreferrer"
target="_blank"
class="twitter social-link"
><i class="fa-brands fa-twitter-square"></i>Twitter</a
>
<a
href=" https://www.instagram.com/heric_olier/"
rel="noreferrer"
target="_blank"
class="instagram social-link"
><i class="fa-brands fa-instagram-square"></i>Instagram</a
>
</div>
<div class="name-footer">
<h4 class="name-copy">©Heric Olier - 2022</h4>
</div> -->
<div class="footer__content-copyright">
<p>
Copyright © 2022 | Coded with
<i class="fa fa-heart" aria-hidden="true"></i>
by
<a
href="https://heric-olier-frontend-developer.netlify.app/"
target="_blank"
>
Heric Olier
</a>
</p>
</div>
</footer>
</main>
<script src="./js/script.js"></script>
<script src="./js/dark-mode.js"></script>
</body>
</html>