-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindice.html
46 lines (39 loc) · 1.64 KB
/
indice.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Encriptador y Desencriptador de Texto</title>
</head>
<body>
<section>
<div class="logo">BlackStrZ</div>
<div class='air air1'></div>
<div class='air air2'></div>
<div class='air air3'></div>
<div class='air air4'></div>
<center>
<p><h3>VISUALISA LA HERRAMIENTA ABAJO</h3></p>
<br></br>
<p><h3>SIGEME EN MIS REDES SOCIALES</h3></p>
</center>
<div class="social-icons">
<a href="https://github.com/AvastrOficial"><img src="https://th.bing.com/th/id/OIP.saZ1ZkS5sHDzRrd8GHUUAAHaHa?rs=1&pid=ImgDetMain" alt="GitHub"></a>
<a href="https://t.me/BSZ_CRACKING"><img src="https://th.bing.com/th/id/OIP.uuUChCkOK3Kmx3wf_-NlCAHaHa?rs=1&pid=ImgDetMain" alt="Telegram"></a>
<a href="https://www.projz.com/s/u/huoonaji2"><img src="https://wikiapk.com/wp-content/uploads/2020/09/930973_featured.png" alt="Otra Red Social"></a>
</div>
</section>
<div id="container">
<h2>CodeZ - BSZ</h2>
<label for="inputText">Texto:</label><br>
<textarea id="inputText" rows="4" cols="50"></textarea><br>
<div class="separator"></div>
<label for="shift">Desplazamiento:</label>
<input type="number" id="shift" min="1" max="25" value="3"><br>
<button onclick="encrypt()">Encriptar</button>
<button onclick="decrypt()">Desencriptar</button><br>
<div class="separator"></div>
<label for="outputText">Resultado:</label><br>
<textarea id="outputText" rows="4" cols="50" readonly></textarea>
</div>
</body>
</html>