-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (75 loc) · 3.48 KB
/
Copy pathindex.html
File metadata and controls
92 lines (75 loc) · 3.48 KB
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
<!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">
<title>ONE Next Oracle Callenge Encriptador G3</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,1,0" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-md">
<div class="container-md">
<picture>
<source media="(max-width:575px)" srcset="img/Logo.png">
<source media="(max-width:799px)" srcset="img/Logo-2.png">
<source media="(max-width:800)" srcset="img/Logo@2x.png">
<img src="img/Logo@2x.png" alt="logo" class="logo">
</picture>
</div>
</nav>
<div class="container mt-3">
<div class="row g-1">
<div class="col-lg-8 col-md-12 p-3">
<textarea name="textoNormal" placeholder="Ingrese el texto aqui" id="idTextoNormal" class="form-control"
cols="30" rows="10"></textarea>
<div class="d-inline-flex">
<span class="material-symbols-outlined mx-1">
error
</span>
Solo letras minúsculas y sin acentos
</div>
<div class="row g-1">
<div class="col-lg-6 col-sm-6">
<div class="d-grid">
<button class="btnEncriptar btncolor" id="btnEncriptar">
Encriptar
</button>
</div>
</div>
<div class="col-lg-6 col-sm-6 ">
<div class="d-grid">
<button class="btnDesencriptar btncolor" id="btnDesencriptar">
Desencriptar
</button>
</div>
</div>
</div>
</div>
<div class="col-lg-4 col-md-12 p-3 contenedorTextoEncriptado ">
<p style="display: none;" class="texto-encriptado">
</p>
<img style="display: block;" src="img/Muñeco.png" alt="Buscar" class="munieco">
<p style="display: block;" class="ningun-mensaje centrarTexto" id="ningunMensaje">
Ningún mensaje fue encontrado
</p>
<p style="display: block;" class="centrarTexto" id="centrarTexto">
Ingresa el texto que desees encriptar o desencriptar
</p>
<button id="btncopiar" type="button" style="display: none;" class="btnEncriptar btncolor btncopiar">
Copiar
</button>
</div>
</div>
</div>
<script src="js/encriptar.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-A3rJD856KowSb7dwlZdYEkO39Gagi7vIsF0jrRAoQmDKKtQBHUuLZ9AsSv4jD4Xa"
crossorigin="anonymous"></script>
</body>
</html>