-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.62 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
<!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="./assets/img/logo-crypto.png" type="image/x-icon">
<link rel="stylesheet" href="./assets/css/style.css?ver=1.2.2">
<title>Stagon Crypto</title>
</head>
<body>
<div class="header">
<img src="./assets/img/logo-crypto.png" alt="Logo da stagon" width="50">
<h1>Stagon Crypto</h1>
<strong>v0.2.1 Beta</strong>
</div>
<div class="container">
<label for="code">Digite o código de autenticação:</label>
<input type="number" id="code" max="9999" min="0" autocomplete="off" placeholder="xxxx">
<div class="count_characters">
<span class="characters_now">0</span>/4
</div>
<label for="field">Digite o texto:</label>
<textarea cols="12" id="field" maxlength="5000" autocomplete="off" placeholder="Seu texto vai aqui" wrap="hard"></textarea>
<div class="count_characters">
<span class="characters_now">0</span>/5000
</div>
<button id="generate">Encriptografar</button>
</div>
<div class="container">
<label for="field">Veja a saída ou coloque o código para descriptografar</label>
<input type="text" id="field_exit" autocomplete="off" placeholder="Aqui onde irá sair seu texto criptografado!">
<div><button id="validate">Descriptografar</button>
<button id="copy">Copiar</button>
</div>
<p id="exit"></p>
</div>
<script src="./assets/js/backend.js"></script>
<script src="./assets/js/frontend.js"></script>
</body>
</html>