-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (52 loc) · 2.55 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
<!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" type="text/css" href="css/bootstrap-5.1.3-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Codificador de Texto</title>
</head>
<body>
<section>
<div class="container-fluid text-center">
<h1 class="margin"> Codificador de texto</h1>
<div class="container">
<div class="row">
<div class="col-lg-6">
<img src="img/criptografia.png" class="arredondar-img" id="informacoes" width="100%">
</div>
<div class="col-lg-6">
<form id=form-codifica>
<div class="mb-3">
<div class="form-floating">
<textarea class="form-control" id="getcode" name="getcode"
placeholder="Digite o texto.." style="height: 100px"></textarea>
<label for="floatingTextarea2">Digite um texto..</label>
</div>
</div>
<div class="mb-3">
<div class="form-floating">
<textarea class="form-control" id="getdecode" name="getdecode"
placeholder="Digite o texto.." style="height: 100px"></textarea>
<label for="floatingTextarea2"> Texto Codificado..</label>
</div>
</div>
<button id="btn-codifica" class="btn btn-outline-success btn-lg">Codificar</button>
<button id="btn-decodifica" class="btn btn-outline-danger btn-lg">Decodificar</button>
<button id="btn-copiar" class="btn btn-outline-primary btn-lg">Copiar</button>
<br>
</form>
</div>
</div>
</div>
</div>
</section>
<script src="js/script.js"></script>
<footer class="container-fluid text-center margin bg-footer">
@Copy || 25/01/2022 || Jadson Rodrigues || <a href="www.linkedin.com/in/jadson-rodrigues-4401a618b"
target="_blank">Linkedin</a>
</footer>
</body>
</html>