-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 loc) · 1.38 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
<!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">
<title>Decodificador de códigos</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Decodificador de Códigos</h1>
</header>
<main>
<section class="form box">
<form action="">
<label for="palavra">Insira apenas palavras minúsculas e sem acento</label>
<input type="text" name="palavra" class="input" id="botao-cripto" placeholder="Insira algo aqui">
<input type="button" value="criptografar" class="btn" onclick="criptografar()">
<input type="button" value="descriptografar" class="btn">
</form>
</section>
<section class="res box">
<form action="">
<label for="resultado">Mensagem Criptografada</label>
<input type="text" name="resultado" class="input" id="sinput">
<input type="button" value="copiar" class="btn">
</form>
<section>
</main>
<footer>Criado por <a href="https://github.com/rmrgomes" target="_blank">Romário Gomes</a></footer>
<script src="script.js"></script>
</body>
</html>