-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (43 loc) · 1.69 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gerador de Senha</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<div class="generator">
<h1>Gerador de Senha</h1>
<label class="password-wrap">
<input type="text" id="password" readonly placeholder="Generate a password" />
<button class="material-icons" id="copy-password" aria-label="Copiar senha">content_copy</button>
</label>
<label>
<span>Comprimento da Senha:</span>
<input type="number" id="password-length" min="1" max="32" value="8" />
</label>
<label>
<span>Incluir Letras Minúsculas:</span>
<input type="checkbox" id="include-lowercase" checked />
</label>
<label>
<span>Incluir Letras Maiúsculas:</span>
<input type="checkbox" id="include-uppercase" checked />
</label>
<label>
<span>Incluir Números:</span>
<input type="checkbox" id="include-numbers" checked />
</label>
<label>
<span>Incluir Símbolos:</span>
<input type="checkbox" id="include-symbols" checked />
</label>
<button type="submit" id="generate-password">Gerar Senha</button>
</div>
</main>
<script src="main.js"></script>
</body>
</html>