-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
56 lines (49 loc) · 2.32 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
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="es">
<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>Criptex</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=PT+Serif&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<canvas id="canvas">Canvas is not supported in your browser.</canvas>
<canvas id="canvas2">Canvas is not supported in your browser.</canvas>
<script src="js/matrix-background.js"></script>
<h1 class="title" id="main-title">Código Secreto</h1>
<main class="main">
<div class="form box">
<h2 id="first-msg">Escriba su mensaje:</h2>
<form action="">
<label for="input-text" id="sub-msg">El mensaje se mostrará en minúsculas. No se pueden ingresar números
ni caracteres especiales.</label>
<input class="text-input" type="text" name="input-text" id="input" placeholder="Ingrese el texto aquí.">
<span id="error" class="invisible"></span>
<div class=buttons>
<input class="btn" type="submit" value="Encriptar" id="btn-encrypt">
<input class="btn" type="submit" value="Desencriptar" id="btn-decrypt">
</div>
</form>
</div>
<div class="msg box">
<h2 id="second-msg">Mensaje encriptado:</h2>
<input class="text-input" type="text" id="output" readonly="readonly"></input>
<div class=buttons>
<input class="btn" type="submit" value="Copiar" id="btn-copy">
</div>
</div>
</main>
<script src="js/forms.js"></script>
<script src="js/validation-and-errors.js"></script>
<script src="js/buttons-functions.js"></script>
<script src="js/buttons.js"></script>
<footer>
<p>Copyright © 2022 María Sofía Fregona, v 1.0.0<br>Background by <a href="https://codepen.io/riazxrazor/pen/Gjomdp">Riaz Laskar</a></p>
</footer>
</body>
</html>