-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (62 loc) · 2.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="images/encript.png" type="image/x-icon"/>
<title>Encryption Tool</title>
</head>
<body>
<header>
<div class="logos">
<nav>
<ul>
<li><a href="https://www.aluracursos.com/"><img class="logos-img" src="images/Alura_logo.png" alt="Alura Latam Logo"></a></li>
<li><a href="https://www.oracle.com/ar/education/oracle-next-education/"><img class="logos-img" src="images/ONE_logo.png" alt="Alura Latam Logo"></a></li>
<li><h1 class="title">Encryption Tool Challenge</h1></li>
</ul>
</nav>
</div>
<div class="">
</div>
</header>
<main>
<section class="encryption-area">
<textarea oninput=removeChar() id="encrypted-text" class="input-field" placeholder="Message to encrypt, lowercase only no special characters"></textarea>
<div class="container-btn">
<button class="btnEncryption" onclick="funcEncryption(), clean()">Encryption</button>
<button class="btnDecryption" onclick="funcDecryption(), clean()" >Decryption</button>
</div>
</section>
<section class="result-area">
<textarea disabled id="result-text" class="result-field" placeholder="No message found"></textarea>
<div class="container-btn">
<button id="btn-copy" class="btn-copy" onclick="">Copy Text</button>
</div>
</section>
</main>
<script src="script.js"></script>
<footer>
<div class="socials">
<p class="footer-info">Yancis Lagos</p>
<p class="footer-info">Alura Latam & Oracle Next Education</p>
<nav>
<ul>
<li>
<a href="https://github.com/ylagosba">
<img class="socials-img" src="images/Github_logo.png" alt="Github Logo">
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/yancis-lagos/">
<img class="socials-img" src="images/Linkedin_logo.png" alt="LinkedIn Logo">
</a>
</li>
</ul>
</nav>
</div>
</footer>
</body>
</html>