-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (57 loc) · 2.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
<!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">
<title>Decodificador de Texto - ONE</title>
<link rel="icon" type="image/x-icon" href="images/favicon-blue.ico">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="app-container">
<div class="wrap-input-header">
<header>
<img id="logo" class="logo unselectable" unselectable="on" src="images/logo-alura.svg" alt="Logo da Alura">
</header>
<section class="input-message">
<label hidden for="msgTextarea">Digite seu texto aqui</label>
<textarea id="msgTextarea" name="msgTextarea" rows="3" cols="3" placeholder="Digite seu texto"></textarea>
<div class="btn-container">
<div class="requirements">
<img src="images/exclamation-circle.svg" alt="">
<span>Apenas letras minúsculas e sem acento.</span>
</div>
<div class="btn-encrypt-decrypt">
<button id="btnEncrypt" class="btn dark-blue unselectable">Criptografar</button>
<button id="btnDecrypt" class="btn light-gray unselectable">Descriptografar</button>
</div>
</div>
</section>
</div>
<section id="result" class="result">
<div class="msg-not-found fade-in">
<img id="imgNoMsgFound" src="images/no-message-found-blue.svg" alt="Nenhuma mensagem encontrada.">
<h3>Nenhuma mensagem encontrada</h2>
<p>Digite um texto que você deseja criptografar ou descriptografar.</p>
</div>
</section>
</div>
<footer>
<ul>
<li>© Desenvolvido por Dante Vicenzo</li>
<li>|</li>
<li>
<a href="https://github.com/dantevicenzo/" target="_blank"><img src="images/github-icon.svg" alt="Logo do GitHub"> GitHub</a>
</li>
<li>
<a href="https://www.linkedin.com/in/dantevicenzo/" target="_blank"><img src="images/linkedin-icon.svg" alt="Logo do LinkedIn"> LinkedIn</a>
</li>
</ul>
</footer>
<script src="main.js"></script>
</body>
</html>