-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="normalize.css">
<title>Encriptador de texto - Oracle/One</title>
<script type="text/javascript" src="main.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="logo">
<img src="./Imagenes/Vector.png">
</div>
<section class="main">
<div class="input-container">
<input type="text" id="inputTexto" placeholder="Ingrese el texto aqui">
</div>
<div class="button-container">
<img src="./Imagenes/icon.png" class="icono">
<p>Solo letras minusculas y sin acentos</p>
<button class="encriptar" type="button" onclick="encriptar()">Encriptar</button>
<button class="desencriptar" type="button" onclick="desencriptar()">Desencriptar</button>
</div>
</section>
<section class="encriptador">
<img src="./Imagenes/Muñeco.png" id="imgDer">
<h3 id="titleDer">Ningun mensaje fue encontrado</h3>
<p id="textDer">Ingresa el texto que desees encriptar o desencriptar.</p>
<textarea class="textResult" id="textResult" rows="8" cols="50"></textarea>
<button id="copy" class="copy" type="button" name="buttom" onclick="copy()">Copiar</button>
</section>
<footer>
<div class="f-container">
<p class="f-text">
© Copyright 2022 - Agustin Bustamante
</p>
</div>
</footer>
</body>
</html>