-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (58 loc) · 2.47 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Cryptex Challenge</title>
<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 href="./css/style.css" rel="stylesheet">
<!-- With 💚 from @doguedogue-->
</head>
<body>
<main class="container">
<div class="row row-cols-1 row-cols-md-3 mb-3 text-center">
<div class="col">
<div class="divlogo">
<img src="./img/logo.svg" alt="">
<img src="./img/cryptex.jpeg" alt="" class="crypteximg">
</div>
</div>
<div class="col">
<div class="diventrada">
<div>
<textarea class="form-control" id="taentrada" placeholder="Ingrese el texto"></textarea>
</div>
<p class="warningtext">⚠ Solo letras minúsculas y sin acentos</p>
<div class="divbuttons">
<button type="button" class="btn btn-success" id="btnencriptar">Encriptar</button>
<button type="button" class="btn btn-warning" id="btndesencriptar">Desencriptar</button>
</div>
</div>
</div>
<div class="col">
<div id="divsaludo">
<img src="./img/guy.svg" alt="" class="imgdiv">
<h4>Ningún mensaje fue encontrado</h2>
<p>Ingrese el texto que desee encriptar o desencriptar</p>
</div>
<div id="divsalida">
<div>
<textarea class="form-control" id="tasalida" readonly></textarea>
</div>
<p class="warningtext"> </p>
<div class="divbuttons">
<button type="button" class="btn btn-secondary" id="btncopiar">Copiar</button>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="copyright fixed-bottom">
<p>With 💚 from <a href="https://github.com/doguedogue">@doguedogue</a> © 2022</p>
</div>
</footer>
<script src="./js/criptex.js"></script>
</body>
</html>