-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (80 loc) · 4.42 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!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">
<meta name="theme-color" content="#94bbe9" />
<title>Saulo - Gerador de Senhas</title>
<link rel="icon" type="image/x-icon" href="/icon/padlock.png">
<meta name="description"
content="Site para gerar senhas aletórias. Basta escolher a quantidade de caracteres e entre Miúsculas, minúsculas, números e caracteres especiais. Gerar, copiar e usar.">
<link rel="stylesheet" href="./css/main.min.css">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9462599150023854"
crossorigin="anonymous"></script>
</head>
<body>
<main>
<div id="wrap">
<div id="wrap_pass">
<div id="pass_icon">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" fill="white">
<path d="M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17v80c0 13.3 10.7 24 24 24h80c13.3 0 24-10.7 24-24V448h40c13.3 0 24-10.7 24-24V384h40c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zm40-176c-22.1 0-40-17.9-40-40s17.9-40 40-40s40 17.9 40 40s-17.9 40-40 40z" />
</svg>
</div>
<pre id="pass">SuperSenha123</pre>
<div id="wrap_security_level">
<div id="safe_bar">
<!-- js -->
</div>
</div>
</div>
<div id="configs">
<div id="size_wrap">
<div id="controls">
<button aria-keyshortcuts="ArrowUp" onclick="changeSize('more'), playKeySound()" id="more"
data-message="aumentar a quantidade de caracteres da senha" tabindex="0">+</button>
<button aria-keyshortcuts="ArrowDown" onclick="changeSize('less'), playKeySound()" id="less"
data-message="diminuir a quantidade de caracteres da senha" tabindex="0">-</button>
</div>
<input value="8" id="size" type="text" disabled aria-hidden="true" aria-disabled="true">
</div>
<div id="types">
<div class="wrap_type">
<input aria-keyshortcuts="m" onclick="playKeySound()" checked type="checkbox" class="type"
id="upper" aria-checked="true" aria-label="Maiúscula">
<label for="upper">
<u>M</u>aiúscula
</label>
</div>
<div class="wrap_type">
<input aria-keyshortcuts="i" onclick="playKeySound()" checked type="checkbox" class="type"
id="lower" aria-checked="true" aria-label="Minúscula">
<label for="lower">M<u>i</u>núscula</label>
<div class="control_indicator"></div>
</div>
<div class="wrap_type">
<input aria-keyshortcuts="n" onclick="playKeySound()" checked type="checkbox" class="type"
id="number" aria-checked="true" aria-label="Números">
<label for="number">
<u>N</u>úmeros
</label>
</div>
<div class="wrap_type">
<input aria-keyshortcuts="e" onclick="playKeySound()" type="checkbox" class="type"
id="special" aria-checked="false" aria-label="Especiais">
<label for="special">
<u>E</u>speciais
</label>
</div>
</div>
</div>
<div id="btns">
<button aria-keyshortcuts="G" class="btn" id="gerar" onclick="getPass(), playKeySound()"><u>G</u>erar Senha</button>
<button aria-keyshortcuts="C" class="btn" id="copiar" onclick="copyPass(), playKeySound()"><u>C</u>opiar</button>
</div>
</div>
</main>
<script src="./dist/app.js"></script>
</body>
</html>