-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (85 loc) · 3.39 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!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">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/input.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/output.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;500;600;700&display=swap" rel="stylesheet">
<title>Codificador</title>
</head>
<body>
<main>
<header class="header">
<div class="container">
<nav>
<a href="">
<img src="src/alura-logo.svg" alt="Alura">
</a>
</nav>
</div>
</header>
<section>
<div class="container">
<div class="input__container">
<textarea type="text" name="text" id="text" placeholder="Digite seu texto" class="input__text" cols="30" rows="8"></textarea>
<div class="input__submit">
<div class="label__container">
<spam><img src="src/bi_exclamation-circle-fill.svg" alt=""></spam><label for="" class="input__label">Apenas letras minúsculas e sem acento.</label>
</div>
<div class="group__button">
<input type="submit" value="Criptografar" id="criptografar" class="button__primary">
<input type="submit" value="Descriptografar" id="descriptografar" class="button__secondary">
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="output__container">
<div class="mensagem">
<div class="mensagem__vazia">
<img src="src/High quality products 1 1.svg" alt="">
<h2>Nenhuma mensagem encontrada</h2>
<p>Digite um texto que você deseja criptografar ou descriptografar.</p>
</div>
<div class="mensagem__resposta esconder">
<textarea id="resposta" cols="30" rows="8">Digite um texto que você deseja criptografar ou descriptografar.</textarea>
<button class="button__secondary" id="copiar">Copiar</button>
</div>
</div>
</div>
</div>
</section>
</main>
</body>
<script src="main.js"></script>
</html>
<!--
<main>
<section class="center crypto">
<section class="input-text">
<form action="">
<input class="text-area" type="text">
<br>
<span>!</span><caption>Apenas letras minúsculas e sem acento.</caption>
<br>
<button>Criptografar</button>
<button class="light-bt">Descriptografar</button>
</form>
</section>
<section class="output-text">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quas error magnam est doloremque accusantium. Expedita nostrum dolorem dolorum eaque architecto placeat iure animi iste. Enim, commodi iusto. Esse, aperiam et.</p>
<button>Copiar</button>
</section>
</section>
</main>
-->