-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.56 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="shortcut icon" href="img/icon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/index.css">
<title>Challenge - Sprint 01</title>
</head>
<body>
<main>
<section class="row" id="logo">
<img width="31" height="48" src="img/logo.svg" alt="Logo da alura">
</section>
<section id="main">
<div id="text-input">
<textarea id="input" placeholder="Digite seu texto aqui" maxlength="200"></textarea>
<span class="row" id="aviso"><img src="img/info.svg" alt="Icone de aviso">Apenas letras minúsculas e sem acento.</span>
<button class="col" id="btnCriptografar">Criptografar</button>
<button class="col" id="btnDescriptografar">Descriptografar</button>
</div>
<div id="text-output">
<span id="empty"><img src="img/output.svg" alt="Nenhuma saída"><h1>Nenhuma mensagem encontrada</h1>Digite um texto que você deseja criptografar ou descriptografar.</span>
<textarea id="outputTexto" readonly></textarea>
<button id="btnCopiar">Copiar</button>
</div>
</section>
</main>
</body>
<script src="js/index.js"></script>
</html>