-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (32 loc) · 1.59 KB
/
index.html
File metadata and controls
37 lines (32 loc) · 1.59 KB
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
<!DOCTYPE html>
<html lang="pt">
<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 senhas, gerador password">
<link rel="stylesheet" href="/css/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,300&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="/assets/icon.ico" type="image/x-icon">
<title>Gerador de Senhas</title>
</head>
<body>
<main class="container-input">
<h1 class="title">Gerador de Senha</h1>
<span>Tamanho <span id="value"></span> caracteres</span>
<input id="slider" class="slider" type="range" min="6" max="25" value="15">
<button id="button" class="button" onclick="generatePassword()">Gerar Senha</button>
</main>
<div id="container-password" class="container-password hide">
<span class="title-password">Sua senha gerada foi:</span>
<span onclick="copyPassword()" id="password" class="password"></span>
<span id="copy" class="copy">☝️Clique na senha para copiar.</span>
</div>
<script src="js/script.js"></script>
</body>
</html>