-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (47 loc) · 2.25 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
<!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="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<title>Desafio Alura</title>
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<header class="logo">
<img src="./images/logo_da_alura.svg" alt="logo da alura">
<h1 class="promocurso"> Challenge: Oracle-One + Alura</h1>
</header>
<div class="container">
<div class="main">
<textarea onchange="validateText()" id="user-text" cols = "70" rows = "6" placeholder="Digite seu texto"></textarea>
<div class="warning">
<p> <img class="exclamacao" src="./images/aviso_exclamacao.png" alt="Alert notice">
Apenas letras minúsculas e sem caracteres especais.</p> <br>
<button class="botao" type="button" onclick="criptografar()"><img src="./images/lock1.png"> Criptografar</button>
<button class="botao" type="button" onclick="descriptografar()"><img src="./images/padlock2.png"> Descriptografar</button>
</div>
</div>
<div class="right-side">
<div id="not-concluded">
<img src="./images/user_search.svg" alt="user-search">
<h2> Nenhuma mensagem encontrada </h2>
<p>Digite um texto que você deseja criptografar ou descriptografar</p>
</div>
<div id="concluded">
<div id="processedText">
</div>
<br><br>
<button class="botao" type="button" onclick="copiarTexto()"> Copiar</button>
</div>
</div>
</div>
<script src="./js/index.js"></script>
<footer>
<p class="copyright">© Desenvolvido por Carlos José Gonçalves - 2022</p>
</footer>
</body>
</html>