-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (65 loc) · 2.3 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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<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>Challenge 1 Oracle one</title>
<link rel="stylesheet" href="css/index.css" />
<!-- Fontawesome icons kit -->
<script
src="https://kit.fontawesome.com/42fb2cea8c.js"
crossorigin="anonymous"
></script>
</head>
<body>
<header>
<!-- Librería de FA -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
</header>
<main class="row">
<div id="logo" class="col-s-12 col-12 col-l-2 col-xl-2">
<img id="logoAlura" src="img/logoAlura.svg" />
</div>
<div id="main" class="col-s-12 col-12 col-l-6 col-xl-7">
<!-- Logo Alura -->
<!-- Section where the user type the message to encrypt or decrypt -->
<section id="inputMessageBox">
<form action="">
<textarea
name="message"
id="message"
cols="100%"
rows="10"
placeholder="Ingrese el texto aquí"
></textarea>
</form>
</section>
<!-- Section where are the buttons to encrypt or decrypt -->
<section id="buttoms" class="col-12 col-s-12">
<button class="buttom" id="encrypt">Encriptar</button>
<button class="buttom" id="decrypt">Desencriptar</button>
</section>
</div>
<div id="aside" class="col-12 col-s-12 col-l-4 col-xl-3">
<!-- Section where the encrypted or decrypted message is displayed -->
<section id="showMessageBox">
<img id="doll" class="hideImg" src="img/doll.svg" />
<p id="firstText">Ningún mensaje fue encontrado</p>
<p id="secondText">
ingresa el texto que desees encriptar o desencriptar
</p>
<div class="clipboardContainer">
<button id="clipboardButton"><i class="fa-solid fa-clipboard"></i></button>
</div>
</section>
</div>
</main>
<script src="script/index.js"></script>
</body>
</html>