-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (39 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
43
44
45
46
47
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="img/logo.svg" type="image/svg+xml">
</head>
<body>
<header>
<button id="toggle-dark-mode" class="floating-button">
<img src="img/dark-mode.svg" alt="darkmode">
</button>
</header>
<div class="container">
<h1></h1>
<div class="input-container">
<textarea id="input-text" class="textarea" placeholder=""></textarea>
</div>
<div class="button-container">
<button id="encrypt-button" class="button"></button>
<button id="decrypt-button" class="button"></button>
</div>
<div class="result-container">
<span id="encrypted-text" class="result-text"></span>
<p id="no-message" class="no-message" style="display: none;" ></p>
<p id="invalid-input" class="no-message" style="display: none;"></p>
<button id="copy-button" class="copy-button">
<img src="img/copy-icon.svg" alt="Copy Icon" width="24" height="24">
</button>
</div>
</div>
<script src="app.js"></script>
<footer class="footer">
<button id="linkedin-button" class="footer-button"></button>
</footer>
</body>
</html>