-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (69 loc) · 2.15 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
<!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" />
<title>Challenge 1 - Oracle Alura</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="script.js"></script>
<script
src="https://kit.fontawesome.com/f1e7393ec4.js"
crossorigin="anonymous"
></script>
</head>
<body>
<div class="container">
<div class="logo">
<img class="logoImg" src="img/logo_alura.png" />
<h1 class="title">Encriptador de Texto</h1>
</div>
<div class="left">
<input
class="text-input"
id="inputTexto"
type="text"
placeholder="Digite seu texto Aqui"
/>
</div>
<div class="right">
<img src="img/garoto_ladodireito.png" id="imgDireita" />
<h1 id="texto">Nenhuma mensagem foi encontrada</h1>
<textarea id="texto2" name="name" rows="8" cols="80">
Entre com o texto para Criptografar ou Descriptografar.</textarea
>
<button id="copiar" type="button" name="button" onclick="copiar()">
Copiar!
</button>
</div>
<div class="left button">
<p>Use somente letra minusculas e sem acento</p>
<button type="button" id="btn-criptografar" onclick="criptografar()">
Criptografar
</button>
<button
type="button"
id="btn-descriptografar"
onclick="descriptografar()"
>
Descriptografar
</button>
<button id="btn-limpar" onclick="window.location.reload()">
Limpar!
</button>
<footer>
<p>© 2022 Wilmar Santos</p>
<a
href="https://www.linkedin.com/in/wilmar-santos-a90ab888/"
target="_blank"
><img src="img/linkedin.png"
/></a>
<a href="https://github.com/wms001" target="_blank"
><img src="img/github.png"
/></a>
</footer>
</div>
</div>
</body>
</html>