-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (86 loc) · 4.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<!--
Author: Jeisson Alexander Hernandez
Desafio Encriptador de Texto
Date: August, 2024
-->
<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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
<script src="encrypter.js"></script>
<title>Encriptador de Texto</title>
<link href="indexstyles.css" rel="stylesheet">
</head>
<body>
<header>
<h1 class="typing-finished">Text Encryptor</h1>
<div><a href="https://www.aluracursos.com/"><img src="images/alura-logo.png" alt="alura"></a></div>
</header>
<div class="container-fluid">
<div class="row custom-center">
<div class="col-sm-6 button-container">
<div class="card shadow-lg cardheight" style="width: 100%;">
<div class="card-body">
<textarea class="container-fluid" id="user_input" rows="8" placeholder="Insert text here"></textarea>
<div>
<p class="button-container"><img src="images/info.png" alt="informacion" style="width: 15px; height: 15px; vertical-align: middle;"> Only lowercase letters and no accents</p>
</div>
<div class="row encrypt-container">
<div class="col-sm-6 button-container">
<button id="encrypt-button" onclick="encrypt()">Encrypt</button>
</div>
<div class="col-sm-6 button-container">
<button class="decrypt-button" onclick="decrypt()">Decrypt</button>
</div>
</div>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card shadow-lg cardheight">
<div class="card-body position-relative" style="max-height: 95%;">
<div id="overlay-container">
<img src="images/no_message.png" alt="overlay image">
</div>
<textarea class="container-fluid" rows="8" readonly id="user_output"></textarea><br>
<p id="message" class="message">No message to decrypt was found</p>
<div class="row">
<div class="col-sm-12 button-container">
<button class="decrypt-button" onclick="copy()">Copy</button>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<div class="separator"></div>
<footer>
<div class="container-fluid">
<div class="d-flex justify-content-around align-items-center flex-wrap">
<div class="footer-item">
<img class="img-fluid rounded-circle shadow mx-auto" src="images/linkedin-logo-.png" alt="linkedin" style="width: 50px; height: 50px;">
<a href="https://www.linkedin.com/in/alexander-hernandez-software-developer/" target="_blank" style="color: #ffffff; text-decoration: none; background-color: transparent; display: block; text-align: center;">
https://www.linkedin.com/in/alexander-hernandez-software-developer/
</a>
</div>
<div class="footer-item text-center">
<img class="img-fluid rounded-circle shadow mx-auto" src="images/AlexHeadshot.jpg" alt="alex" style="width: 80px; height: 80px;">
<p class="card-text text-white fs-8" style="background-color: transparent;">Alexander Hernandez</p>
<p class="card-text text-white fs-8" style="background-color: transparent;">2024</p>
</div>
<div class="footer-item">
<img class="img-fluid rounded-circle shadow mx-auto" src="images/github-logo.png" alt="github" style="width: 50px; height: 50px;">
<a href="https://github.com/Alex-Turing/DesafioEncriptadorTexto" target="_blank" style="color: #ffffff; text-decoration: none; background-color: transparent; display: block; text-align: center;">
https://github.com/Alex-Turing/DesafioEncriptadorTexto
</a>
</div>
</div>
</div>
</footer>
</html>