This repository has been archived by the owner on May 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
42 lines (42 loc) · 1.47 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>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Challenge1 - Oracle Next Education</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body class="d-md-flex flex-md-row">
<div class="principal d-flex flex-column">
<header>
<img src="./img/logo.svg" class="logo"/>
</header>
<div class="d-flex flex-column flex-grow">
<textarea id="entrada" class="flex-grow" placeholder="Ingrese el texto aquí"></textarea>
</div>
<div class="controles">
<div class="advertencia d-flex">
<span class="icon-info"></span><small>Solo letras minúsculas y sin acentos</small>
</div>
<div class="d-flex flex-column flex-sm-row">
<input type="button" class="button flex-sm-grow" value="Codificar" onclick="uiCodificar()"/>
<input type="button" class="button flex-sm-grow" value="Decodificar" onclick="uiDecodificar()"/>
</div>
</div>
</div>
<div class="barra-lateral d-flex flex-column">
<div class="info d-flex flex-column flex-grow">
<div class="info-img d-none d-md-block">
<img src="./img/muñeco.png" />
</div>
<div class="info-txt my-auto">
<strong>Ningún mensaje fue encontrado</strong><br />
<span>Ingresa el texto que desees codificar o decodificar</span>
</div>
</div>
<div id="salida"></div>
<input type="button" class="button copiar" onclick="uiCopiar()" value="copiar" />
</div>
<script src="./app.js"></script>
</body>
</html>