-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 2.14 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./src/style.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<title>Ciphage</title>
</head>
<body>
<div class="container d-flex justify-content-between pt-4 pb-2">
<div class="dropdown">
<button class="btn dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<i class="bi bi-translate"></i>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item">Español</a></li>
<li><a class="dropdown-item">English</a></li>
</ul>
</div>
<div class="dropdown">
<button class="btn dropdown-toggle" type="button" data-bs-toggle="dropdown" aria-expanded="false">
<i class="bi bi-brightness-high-fill"></i>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item">Light</a></li>
<li><a class="dropdown-item">Dark</a></li>
<li><a class="dropdown-item">System</a></li>
</ul>
</div>
</div>
<div class="container py-4">
<h1 class="display-4 fw-bolder mb-3 text-center">Ciphage</h1>
<p class="text-center mb-5">¿Necesitas cifrar o descifrar un mensaje? Ciphage es la solución.</p>
<textarea class="col-12" rows="9" placeholder="Coloca tu mensaje aquí..."></textarea>
<p class="text-center">Solo letras minúsculas y sin acentos</p>
<div class="d-flex justify-content-evenly mt-3 mx-5">
<button id="encrypt-button" class="btn btn-primary col-2">Cifrar</button>
<button id="decrypt-button" class="btn btn-primary col-2">Descifrar</button>
<button id="ctc-button" class="btn btn-primary col-2">Copiar</button>
</div>
</div>
</body>
<script type="module" src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script type="module" src="/src/main.js"></script>
</html>