-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index_.html
37 lines (31 loc) · 1.31 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
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset = "UFT-8">
<link rel="stylesheet" href="style.css">
<script type="text/javaScript" src="script.js"></script>
<title> Sprint 1</title>
</head>
<body>
<div class="contenedor">
<div class="logo">
<img class="logoImg" src="Logo.png">
<h1 textclass="tittle">Encriptador de texto</h1>
</div>
<div class="left">
<input class="text-input" id="inpuntTexto" type="text" placeholder="Ingrese el texto aqui" >
</div>
<div class="right">
<img src="ovni.png" id="imgDer">
<h1 id="texto">Ningún mensaje fue encontrado</h1>
<textarea id="texto2" name="name" rows="8" cols="80">Ingrese el texto que desees encriptar o desencriptar.</textarea>
<button id="copiar" type="button" name="button" onclick="copy()">Copiar</button>
</div>
<div class="left-button">
<p style="text-align:center">*Solo minusculas y sin acento</p>
<button type="button" id="btn-encriptar" onclick="encriptar()">Encriptar</button>
<button type="button" id="btn-desencriptar" onclick="desencriptar()">Desencriptar</button>
</div>
</div>
</body>
</html>