-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (52 loc) · 1.94 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
<!DOCTYPE html>
<html lang="pt-br">
<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" type="text/css" href="assets/style/reset.css">
<link rel="stylesheet" type="text/css" href="assets/style/style.css">
<title>Decodificador</title>
</head>
<body>
<header>
<a class="logo-alura" href="https://www.alura.com.br/" target="_blank"><img src="assets/img/logo-alura.png" alt="Logo da Alura"></a>
<div class="title-decoder">
<h1>Decodificador</h1>
<p id="underline">_</p>
</div>
</header>
<main>
<section class="text__container">
<textarea class="text-field" placeholder="Digite aqui o seu texto" required></textarea>
<div class="warning">
<img src="assets/img/exclamacao.png" id="exclamation" alt="Ponto de exclamação"><label>Apenas letras minúsculas
e sem acento.</label>
</div>
<div class="buttons">
<button id="btn-encrypt" onclick="btnEncrypt()">Criptografar</button>
<button id="btn-decrypt" onclick="btnDecrypt()">Descriptografar</button>
</div>
</section>
<section class="message__container">
<textarea class="message"></textarea>
<div class="message-error">
<h2>Nenhuma mensagem encontrada</h2>
<h3>Digite um texto que você deseja criptografar ou descriptografar.</h3>
</div>
<button id="btn-copy">Copiar</button>
</section>
</main>
<footer>
<nav>
<a href="https://github.com/YuttyAkiko" target="_blank"><img class="img-link" src="assets/img/github.png"
alt="Logo do GitHub"></a>
<a href="https://www.linkedin.com/in/yutty-akiko/" target="_blank"><img class="img-link" src="assets/img/linkedin.png"
alt="Logo do LinkedIn"></a>
<p>© Yutty Akiko Neves Takeyama</p>
<a class="footer-link" href="https://www.alura.com.br/" target="_blank">Alura</a>
</nav>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>