-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (44 loc) · 1.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
64
65
66
<!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="stylesheet" href="./estillo/estilo.css">
<title>Codificador</title>
</head>
<body>
<header>
<div class="titulo">
<h2> Codificador </h2>
</div>
</header>
<section >
<div class="areaCodificar">
<form action="">
<div class="instrucao"> <h5 >Apenas letras minúsculas, sem acento</h5></div>
<input type="text" placeholder="digite aqui" class="texto" id="textoDigitado">
<br>
<div class="areaBotoes">
<button type="submit" class="botao" id="criptografar"> Criptografar <img src="./estillo/imagens/lock_white_24dp.svg" > </button>
<button type="submit" class="botao" id="descriptografar"> Descriptografar <img src="./estillo/imagens/lock_open_white_24dp.svg" > </button>
</div>
</form>
</div>
<div class="areaCodificar">
<form action="">
<div class="resultado"> <h5 id="resultado">Mensagem</h5></div>
<div class="textoResultado"></div>
<div class="areaBotaoCopiar">
<button class=" botao" id="copiar"> Copiar </button>
</div>
</form>
</div>
</section>
<script src="./script/mensagem.js"></script>
<script src="./script/adcEventosBotoes.js"></script>
<script src="./script/criptografar.js"></script>
<script src="./script/descriptografar.js"></script>
<script src="./script/copiar.js"></script>
</body>
</html>