-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (95 loc) · 3.12 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
<!DOCTYPE html>
<html lang="en">
<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>Text Decoder</title>
<link rel="icon" href="assets/logos/favicon-logo.svg" />
<link rel="stylesheet" href="style.css" />
<script src="src/index.js" defer></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"
></script>
</head>
<body class="bg-light-blue">
<header class="rotate-logo">
<img src="assets/logos/Logo.svg" />
</header>
<main>
<section>
<div>
<textarea
autofocus
name="criptografar"
class="input-position"
id="textCriptografar"
placeholder="Digite seu texto"
required
></textarea>
</div>
<div class="d-flex justify-content-end">
<div class="bg-white box-shaddow">
<span id="resultado"></span>
<div class="image-display">
<img id="img-right" src="assets/vector-right-side.png" />
<h4 class="massage-not-found">Nenhuma mensagem encontrada</h4>
<h6 class="enter-text">
Digite um texto que você deseja criptografar ou
descriptografar.
</h6>
</div>
</div>
</div>
</div>
</section>
<section class="position-relative left-position">
<div class="">
<img src="assets/icon/icon-info-footer.svg" />
<label>Apenas letras minúsculas e sem acento.</label>
</div>
<div>
<button
type="button"
id="buttonCriptografar"
class="btn-criptografar"
alt="Clique aqui para Criptografar seu texto"
>
Criptografar
</button>
<button
type="button"
id="buttonDescriptografar"
class="btn-descriptografar"
>
Descriptografar
</button>
</div>
</section>
<footer class="bg-footer-blue">
<a href="https://github.com/vivi-barba" target="_blank"
><img class="icon" src="assets/icon/github (1).png" alt="github"
/></a>
<a href="https://codepen.io/Vic-Barbosa" target="_blank"
><img class="icon" src="assets/icon/codepen.png" alt="codepen"
/></a>
<a
href="https://www.linkedin.com/in/victoriabarbosa-dev/"
target="_blank"
><img
class="icon"
src="assets/icon/logotipo-do-linkedin.png"
alt="Linkedin"
/></a>
</footer>
</main>
</body>
</html>