-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (53 loc) · 2.32 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>Decodificador de Texto</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1><a href="https://www.alura.com.br/oracle-next-education" target="_blank"><img class="logo-alura"
src="images/logo.svg" alt="Logo da plataforma alura"></a></h1>
</header>
<main class="container">
<form class="decoder">
<textarea name="rawtext" id="rawtext" cols="30" rows="10" placeholder="Digite seu texto..."></textarea>
<fieldset class="action-buttons">
<legend class="paragraph"><img class="exclamation" src="images/exclamation.svg" alt="Ponto de exclamação">Apenas letras
minúsculas e sem acento.</legend>
<button type="button" class="standard-btn criptografar-btn">Criptografar</button>
<button type="button" class="standard-btn descriptografar-btn">Descriptografar</button>
</fieldset>
</form>
<div class="result">
<div class="result-default">
<img class="result-img" src="images/searching.svg" alt="Esperando uma entrada de texto">
<h3><strong>Nenhuma mensagem encontrada</strong></h3>
<p class="paragraph">Digite um texto que você deseja Criptografar ou Descriptografar</p>
</div>
<div class="result-paragraph"></div>
<span class="copy-confirm"></span>
<button type="button" class="standard-btn copy-btn">Copiar</button>
</div>
</main>
<footer>
<p class="paragraph">#oracleONE</p>
<p class="paragraph">#challengedecodificador</p>
<p class="paragraph">#alura</p>
<br>
<p class="paragraph">Me siga no github!</p>
<div class="github-logo">
<a href="https://github.com/R34prZ" target="_blank">
<img src="images/GitHub-Mark-32px.png" alt="Logo do Github">
<p class="paragraph">Github</p>
</a>
</div>
</footer>
<script src="js/criptografar.js"></script>
<script src="js/descriptografar.js"></script>
<script src="js/mostrar_resultado.js"></script>
<script src="js/copiar.js"></script>
</body>
</html>