-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 loc) · 1.45 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
<!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">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="titulo">código secreto</h1>
<main class="main">
<section class="form box">
<form action="">
<label for="input-texto">Solo letras minúsculas, sin acento</label>
<input 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">
<span id = "error-texto" class ="invisible"> error vuelva a intentar</span>
</form>
</section>
<section class="msg box">
<h2 id="">Mensaje encriptado:</h2>
<input class="text-input" type="text" id="msg"readonly></input>
<input class="btn" type="submit" value="copiar" id="btn-copy">
<input class="btn" type="submit" value="pegar" id="btn-pegar">
</section>
</main>
<footer class =" realizado">
<p >realizado por juan carlos alderete | 2022</p>
</footer>
<script src="script.js"></script>
<script src ="validar_caracteres.js"></script>
<script src = "https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
</body>
</html>