-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (33 loc) · 1.42 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">
<link rel="stylesheet" href="style.css">
<title>Cifra de Cesar/Base64</title>
</head>
<body>
<header>
<h1>Cifra de Cesar/Base 64</h1>
</header>
<main class="principal">
<label>
<select class="selecionar">
<option>Escolha o método de criptografia</option>
<option value="cesar">Cifra de Cesar</option>
<option value="base64">Base 64</option>
</select>
</label>
<textarea class="text" cols="10" rows="10" placeholder="Digite a mensagem"></textarea>
<textarea class="resultado" cols="10" rows="10" placeholder="(De)crifrando a mensagem..."></textarea>
<label class="incremento" style="display: none;">Incremento: <input type="number" id="numero" min="1" max="25" style="display: none;"></label>
<section>
<label><input type="radio" name="cod" id="codificar" checked>Codificar</label>
<label for="decodificar"><input type="radio" name="cod" id="decodificar">Decodificar</label>
</section>
<input type="submit" value="Resultado" id="verificar">
</main>
<script src="cesarBase.js"></script>
</body>
</html>