-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 1.11 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
<!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">
<meta name="keywords" content="Gerador de Senha, Gerador, Senha, Password">
<title>Gerador de Senha</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<img class="logo" src="./assets/logo.png" alt="Gerador de Senha Logo">
<h1 class="logoText">Gerador de Senha</h1>
<main class="container-input">
<span>Tamanho <span id="valor"></span> caracteres</span>
<input id="slider" class="slider" type="range" min="5" max="30" value="15">
<button id="button" class="button-cta" onclick="generatePassword()">Gerar Senha</button>
</main>
<div id="container-password" class="container-password hide">
<span class="title">Sua senha gerada foi:</span>
<span id="password" class="password" onclick="copyPassword()"></span>
<span class="tooltip">Clique na senha para copiar 👆 </span>
</div>
<script src="script.js"></script>
</body>
</html>