-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (80 loc) · 3.01 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
<!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>
<link
href="https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@300;500;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/css/normalize.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Encryptor</title>
</head>
<body>
<header class="header container">
<div class="header-logo gradient">
<img src="assets/images/encryptor-logo.png" alt="Logo
Encryptor">
<h1 class="gradient">Encryptor</h1>
</div>
</header>
<main class="container">
<div class="main">
<div class="encrypt">
<div class="encrypt-text">
<form>
<textarea name="" id="encrypt-text" autofocus
placeholder="Digite seu texto..."></textarea>
</form>
</div>
<div class="click-area">
<div class="warning-area">
<img src="assets/images/exclamation-icon.png" alt="">
<p>Apenas letras minúsculas e sem acento.</p>
</div>
<div class="buttons">
<button class="button btn-encrypt"
onclick="encrypt(this)">Criptografar</button>
<button class="button btn-decrypt"
onclick="decrypt(this)">Descriptografar</button>
</div>
</div>
</div>
<div class="decrypt">
<div class="not-find">
<img src="assets/images/find-logo.svg" alt="">
<h3>Nenhuma mensagem encontrada</h3>
<p>Digite um texto que você deseja criptografar ou
descriptografar.</p>
</div>
<div class="encrypted-box">
<textarea disabled class="encrypted-text"></textarea>
<div>
<button class="button btn-copy" onclick="copy()">Copiar</button>
</div>
</div>
</div>
</div>
</main>
<footer class="footer">
<div>© Desenvolvido por <a target="_blank"
href="https://github.com/macieljuniormax">Maciel
Júnior</a></div>
<div class="icons">
<a href="http://api.whatsapp.com/send?phone=5561995220623"
target="_blank"><img style="width: 40px;"
src="assets/images/logo-whatsapp.png" alt=""></a>
<a href="https://www.linkedin.com/in/macieljuniormax/" target="_blank"><img
style="width: 40px;"
src="assets/images/logo-linkedin.png" alt=""></a>
<a href="https://github.com/macieljuniormax" target="_blank"><img
style="width: 40px;"
src="assets/images/logo-github.png" alt=""></a>
</div>
</footer>
<script src="assets/js/script.js"></script>
</body>
</html>