-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
99 lines (87 loc) · 2.76 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
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Decodificador de Texto</title>
<!-- Favicon -->
<link
rel="shortcut icon"
href="./src/assets/logo.svg"
type="image/svg+xml"
/>
<!-- Styles -->
<link rel="stylesheet" href="./src/styles/styles.css" />
<link rel="stylesheet" href="./src/styles/buttons.css" />
<link rel="stylesheet" href="./src/styles/inputs.css" />
<link rel="stylesheet" href="./src/styles/sizes.css" />
<!-- Fonts -->
<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@300;400;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="container">
<div class="col-left">
<header>
<img src="./src/assets/logo.svg" alt="Logo Alura" />
</header>
<main>
<textarea
placeholder="Digite o seu texto aqui"
id="message"
></textarea>
<div class="main-footer">
<div class="main-footer-alert">
<img
src="./src/assets/bi_exclamation-circle-fill.svg"
alt="Ícone de informação"
/>
<p>Apenas letras minúsculas e sem acento</p>
</div>
<div class="main-buttons">
<button type="submit" onclick="encryptMessage()">
Criptografar
</button>
<button type="reset" onclick="decryptMessage()">
Descriptografar
</button>
</div>
</div>
</main>
</div>
<div class="col-right">
<div class="col-right-box">
<img src="./src/assets/high-quality-products.svg" alt="" />
<h1>Nenhuma mensagem encontrada</h1>
<p>Digite um texto que você deseja criptografar ou descriptografar</p>
</div>
<div class="message-processed" style="display: none;">
<div class="message-processed-text" id="messageProcessed"></div>
<button
id="copyButton"
class="button-copy"
onclick="copyText()"
>
Copiar
</button>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<span>
2024. Desenvolvido com 💙 por
<a href="https://linkedin.com/in/jusceliadesouza" target="_blank"
>Juscélia de Souza</a
>
</span>
</div>
</footer>
<!-- Scripts -->
<script src="./src/scripts/index.js"></script>
</body>
</html>