-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (77 loc) · 3.5 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
<!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="css/style.css">
<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=Inter:wght@400;700&display=swap" rel="stylesheet">
<title>Encrypter Piece</title>
</head>
<body>
<header>
<img class="header_image" src="assets/image/logo OP2.png" alt="">
<h1 class="main-title">Encrypter Piece</h1>
</header>
<main class="main-container">
<section>
<div class="form-decoded-text-container">
<form class="form-decoded-text">
<textarea name="decoder" class="decoded-text" cols="30" rows="7"
placeholder="Digite seu texto..."></textarea>
</form>
</div>
<div class="alert-container">
<ion-icon name="alert-circle-sharp" class="alert-icon"></ion-icon>
<p class="alert-description">Apenas letras minúsculas e sem acento.</p>
</div>
<div class="button-container">
<button class="encrypt-button">Criptografar</button>
<button class="decrypt-button">Descriptografar</button>
</div>
</section>
<section>
<div class="text-result-container">
<img src="./assets/image/decoder-image.svg" alt="Homem criptografando e descriptografando textos."
class="img-text-result">
<h2 class="text-result-title">Nenhuma mensagem encontrada</h2>
<p class="text-result-paragraph">Digite um texto que você deseja criptografar ou
descriptografar.
</p>
<div lass="form-result-paragraph-container">
<form class="form-result-paragraph">
<textarea class="textarea-result-paragraph" cols="30" rows="7"></textarea>
</form>
</div>
</div>
<button class="copy-button">Copiar</button>
</section>
</main>
<footer class="footer-bottom">
<div class="container">
<p class="copyright">
© 2022 Encrypter Piece. All Rights Reserved By <a href="https://github.com/Hikaruyamanaka"
class="copyright-link">Hikaru Yamanaka.</a>
</p>
<ul class="footer-bottom-list">
<li>
<a href="https://github.com/Hikaruyamanaka" class="footer-bottom-link has-before" target="_blank">
<ion-icon name='logo-github' class="bottom-link-icon"></ion-icon>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/hikaruyamanaka/" class="footer-bottom-link has-before"
target="_blank">
<ion-icon name='logo-linkedin' class="bottom-link-icon"></ion-icon>
</a>
</li>
</ul>
</div>
</footer>
<script src="js/script.js"></script>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</body>
</html>