-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (100 loc) · 3.19 KB
/
index.html
File metadata and controls
100 lines (100 loc) · 3.19 KB
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
100
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="assets/styles/reset.css" />
<link rel="stylesheet" href="assets/styles/styles.css" />
<title>Decodificador de Textos</title>
</head>
<body>
<header>
<section class="content_header">
<div class="content_header__contacts">
<div class="content_header__contacts___logo">
<img src="assets/images/logo_alura.svg" alt="Logotipo da Alura" />
</div>
<div class="content_header__contacts___social">
<a href="https://www.linkedin.com/in/edvan-sabino/" target="_blank"
><img
src="assets/images/logo_linkedin.png"
alt="Logotipo do Linkedin"
/></a>
<a href="https://github.com/edvannps" target="_blank"
><img
src="assets/images/logo_github.png"
alt="Logotipo do Github"
/></a>
</div>
</div>
<div>
<h1>Decodificador de Textos</h1>
</div>
</section>
</header>
<main class="scope">
<section class="encrypted_field__scope">
<textarea
name="text_content"
class="input_encrypted__field"
placeholder="Digite seu texto..."
></textarea>
<div class="alert_input__encrypted___field">
<img src="assets/images/exclamacao.svg" alt="Ponto de Exclamação" />
<p>Apenas letras minúsculas e sem acentos!</p>
</div>
<div class="input_encrypted__field___button">
<button
class="text_field__button"
id="btn_encoder"
onclick="btnEncrypt()"
>
Criptografar
</button>
<button
class="text_field__button"
id="btn_decoder"
onclick="btnDecrypt()"
>
Descriptografar
</button>
</div>
</section>
<section class="decrypted_field__scope">
<div class="decrypted_message__area">
<h2 class="tittle_decrypted__area">Nenhuma mensagem encontrada</h2>
<p class="decrypted_text__message___area">
Digite um texto que você deseja criptografar ou descriptografar.
</p>
</div>
<div class="container_decrypted__area___output">
<textarea
name="encoding-result"
class="output_decrypted__field"
readonly="true"
placeholder
></textarea>
<button
class="output_text__button"
id="copy_result"
onclick="copy_output_text()"
>
Copiar
</button>
<button
class="output_text__button"
id="clear_result"
onclick="clear_output_text()"
>
Limpar
</button>
</div>
</section>
</main>
<footer class="footer_description">
<p>© developed by Edvan Sabino</p>
<p>challenge ONE - Oracle Next Education & Alura</p>
</footer>
<script src="assets/scripts/scripts.js"></script>
</body>
</html>