-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (81 loc) · 3.74 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" />
<link rel="icon" href="favicon.ico">
<title>Decoder - Oracle One</title>
</head>
<body>
<nav class="navbar navbar-light bg-light">
<div class="container">
<a class="navbar-brand my-3" href="https://godplex.github.io/decoder-izix">
<img src="img/logo.png" width="30px">
</a>
</div>
</nav>
<div class="container pt-5">
<div class="row pb-5">
<div class="col-lg-8 position-relative">
<textarea class="form-control pe-5" id="addText" placeholder="Ingrese el texto aquí..."
style="height: 400px"></textarea>
<button class="btn position-x-button d-none text-secondary" id="deleteText" type="button"><i class="fas fa-times fa-2x"></i></button>
<p class="pt-3 pb-sm-3 pb-0 m-0 text-secondary"><i class="fas fa-exclamation-circle"></i> Solo letras sin
acentos.</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-between">
<button class="btn btn-primary col-md-5 p-4 my-sm-0 my-2" id="encrypt" type="button"><i
class="fas fa-lock"></i> Encriptar</button>
<button class="btn btn-outline-primary col-md-5 p-4 my-sm-0 my-2" id="decrypt" type="button"><i
class="fas fa-unlock"></i> Desencriptar</button>
</div>
</div>
<div class="col-lg-4 position-relative pt-lg-0 pt-5">
<div class="d-flex flex-column align-items-center px-lg-5 pt-lg-3 text-center" id="no-text">
<img class="img-responsive d-none d-lg-block" src="img/empty-text.png" />
<h4 class="fw-bold">Ningún mensaje fue encontrado.</h4>
<p>Ingresa el texto que desees encriptar o desencriptar.</p>
</div>
<div class="d-none" id="with-text">
<textarea class="form-control" id="showText" style="height: 400px" readonly></textarea>
<div class="d-grid gap-1 position-button d-lg-flex justify-content-lg-center">
<button class="btn btn-outline-primary px-md-5 p-4 my-lg-0 my-4 col-lg-10" id=copy type="button"
data-bs-toggle="tooltip" data-bs-placement="top" title="Copiar al portapapeles"><i
class="fas fa-copy"></i> Copiar</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="copyright-text text-center text-dark py-5 my-4">
Copyright © 2022 - Todos los derechos reservados por Julian David Rincon Espinosa.
<div class="row pt-5">
<div class="col-4">
<a href="https://www.linkedin.com/in/izix/" target="_blank" class="text-decoration-none text-white"><i
class="fab fa-linkedin fa-2x"></i>
<p class="d-none d-lg-block">LinkedIn</p>
</a>
</div>
<div class="col-4">
<a href="https://portfolio-izix.herokuapp.com/" target="_blank" class="text-decoration-none text-white"><i
class="fas fa-suitcase fa-2x"></i>
<p class="d-none d-lg-block">Portafolio</p>
</a>
</div>
<div class="col-4">
<a href="https://github.com/Godplex" target="_blank" class="text-decoration-none text-white"><i
class="fab fa-github-square fa-2x"></i>
<p class="d-none d-lg-block">GitHub</p>
</a>
</div>
</div>
</div>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/encrypt.js"></script>
<script type="text/javascript" src="js/decrypt.js"></script>
<script type="text/javascript" src="js/copy.js"></script>
</body>
</html>