forked from Laboratoria/SAP002-caesar-cipher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (35 loc) · 1.25 KB
/
index.html
File metadata and controls
35 lines (35 loc) · 1.25 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cripto</title>
<link href="./src/css/style.css" rel="stylesheet" type="text/css" />
<link rel="icon" href="./src/images/favicon.ico" />
</head>
<body>
<main>
<section class="grid grid-template-rows-1">
<div class="item">
<figure>
<img class="logo-cripto" src="src/images/cripto-logo.svg" alt="Logo Cripto">
</figure>
<p class="paragraph">Envie mensagens de texto seguras para qualquer amigo XD</p>
<textarea placeholder="Escreva sua mensagem" class="textarea" id="textarea" ></textarea>
<div>
<input type="number" id="offset" class="offset" placeholder="Indique o deslocamento"/>
</div>
<div>
<button id="btn-encode" class="btn-encode">Criptografar</button>
<button id="btn-decode" class="btn-decode">Descriptografar</button>
</div>
</div>
<figure class="item">
<img class="image-cripto" src="./src/images/cripto-animacao.gif" alt="Imagem Animada Segurança">
</figure>
</section>
</main>
<script src="./src/js/script.js"></script>
<script src="./src/js/test/tests.js"></script>
</body>
</html>