-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (33 loc) · 1.36 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="es">
<head>
<meta charset="UTF-8">
<title>Encriptador</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1 class="titulo">ENCRIPTADOR</h1>
</header>
<main class="main">
<section class="form box">
<form action="">
<label for="input-texto">Ingrese solo minúsculas, sin acento</label>
<input onkeypress="return/[a-z]/i.test(event.key)" class="text-input" type="text" name="input-texto" id="input-texto" placeholder="Ingrese el texto aqui">
<input class="btn" type="submit" value="encriptar" id="btn-encriptar" >
<input class="btn" type="submit" value="desencriptar" id="btn-desencriptar" >
<input class="btn" type="submit" value="limpiar" id="clean" onclick="limpiar()">
</form>
</section>
<section class="msg box">
<h3 id="">Mensaje encriptado:</h3>
<input class="text-input" type="text" id="msg"></input>
<input class="btn" type="submit" value="copiar" id="btn-copy" onclick="copiarTexto()">
</section>
</main>
<footer>
<p class="copyright">© Copyright Oscar Garzón - 2022</p>
</footer>
<script src="scrpt/script.js"></script>
</body>
</html>