-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 2.71 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
<!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="shortcut icon" href="./imgs/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./index.css">
<title>coDecode</title>
</head>
<body>
<header>
<div>
<h1 class="textHeader">{[co(De]code)}</h1>
</div>
</header>
<main>
<form class="container">
<label class="textContLabel">Digite o texto a ser criptografado</label>
<div class="textBox">
<textarea placeholder="Digite aqui sua mensagem" class="text" name="texto" id="text" cl cols="70"
rows="6"></textarea>
<!-- <div id="showResult" class="resultBox"> -->
<textarea class="text" name="texto" id="textResult" cl cols="70" rows="6" readonly></textarea>
<!-- </div> -->
</div>
<div class="selectionBox">
<div class="typeClass">
<label for="quantity">Escolha o tipo:</label>
<select name="encodeSelection" id="selectType" class="selectType">
<option value="empty"></option>
<option value="cifra">Cifra de César</option>
<option value="Base64">Base64</option>
</select>
</div>
<div id="divInputRadio">
<input type="radio" id="codeId" name="selection" value="encode">
<label for="code">Codificar</label><br>
<input type="radio" id="decodeId" name="selection" value="decode">
<label for="encode">Decodificar</label><br>
</div>
<div class="idQttDiv" id="idQttDiv">
<label for="quantity">Escolha o passo:</label>
<input type="number" id="quantity" class="quantity" name="quantity" min="0" max="100">
</div>
</div>
<div class="btnDiv" id="btnDiv">
</div>
</form>
</main>
<footer class="fixed-footer">
<span>Desenvolvido por Danylo Baziewicz - Para fins
estritamente didáticos.</span>
<div class="footerFlex">
<a href="https://www.linkedin.com/in/danbaziewicz/"><img class="footerIcon" src="./imgs/linkedin.png" alt="linkedin icon"></a>
<a href="https://github.com/danbaziewicz"><img class="footerIcon" src="./imgs/github.png" alt="github icon"></a>
</div>
</footer>
<script src="./index.js"></script>
</body>
</html>