-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (88 loc) · 2.8 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
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
<!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" type="text/css" href="style.css" />
<link rel="shortcut icon" type="icon/png" href="img/vogale4.png" />
<title>vogal.encryptor</title>
</head>
<body>
<header>
<nav id="header">
<img src="img/vogale4.png" alt="Logo" id="img" />
<h1 class="title">vogal.encryptor</h1>
</nav>
</header>
<main>
<section class="flex-container">
<form>
<textarea
type="text"
id="texto"
required
placeholder="Digite seu texto aqui"
autofocus="true"
autocomplete="off"
spellcheck="false"
></textarea>
<p class="warning">
Ⓘ apenas letras minúsculas e sem acento.
</p>
<a href="#texto2">
<button type="submit" id="encript" class="btn">
Criptografar
</button></a
>
<a href="#texto2">
<button type="submit" id="descript" class="btn">
Descriptografar
</button></a
>
</form>
<div>
<div class="flex">
<p class="nomsg">
<strong
>Nenhuma mensagem<br />
encontrada</strong
>
</p>
<p class="enter">
Digite algo que gostaria<br />
de criptografar ou descriptografar
</p>
</div>
<img src="img/encryption-unscreen1.gif" id="gif" />
<textarea
type="text"
readonly
required="text"
id="texto2"
class="border"
></textarea>
<p class="invalido">Nenhuma mensagem para ser copiada!</p>
<p class="valido">"Sua mensagem foi copiada!"</p>
<div>
<button type="button" id="copiar">Copiar</button>
<button type="button" id="limpar">Limpar</button>
</div>
</div>
</section>
</main>
<footer id="footer">
© ita.riss<br />
<div class="links">
<a href="https://www.linkedin.com/in/%C3%ADtalo-rissardi-83340322a/">
<img src="img/linkedin.png" />
</a>
<a href="https://github.com/itariss/">
<img src="img/github.png" />
</a>
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>