-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·46 lines (43 loc) · 1.58 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
<!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="cifra.css">
<script src="cifra.js" defer></script>
<title>Codificador</title>
</head>
<body>
<div class="container">
<header>
<h1>Codifique sua mensagem!</h1>
</header>
<main>
<p>Escolha o seu método: </p>
<form >
<input type="radio" name="metodo" id="cifra" value="true">Cifra de César
<input type="radio" name="metodo" id="base64" value="true">Base 64
</form>
<p>Escreva sua mensagem: </p>
<input type="text" id="input">
<div id="escolhaChave">
<p>Escolha a numeração da chave: </p>
<input type="number" name="chave" id="chave" min="1">
</div>
<p>Escolha se quer codificar ou decodificar: </p>
<form >
<input type="radio" name="mensagem" id="codificar" value="true">Codificar
<input type="radio" name="mensagem" id="decodificar" value="true">Decodificar
</form>
<div class="retorno" id="retorno">
</div>
<button>Enviar</button>
</main>
<footer>
<p>Todos os direitos reservados</p>
<a href="https://github.com/LhaisCosta99"><p>Lhaís Costa 2022©</p></a>
</footer>
</div>
</body>
</html>