-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (87 loc) · 3.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Gerador de Senha</title>
<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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
<script src="js/scripts.js" defer></script>
</head>
<body>
<div id="register-container">
<div id="register-banner">
<div id="banner-layer">
<h1>Seja bem-vindo</h1>
</div>
</div>
<div id="register-form">
<h2>Crie sua conta:</h2>
<p>Registre-se para utilizar todas as funcionalidades do sistema</p>
<div class="form-control">
<label for="name">Nome</label>
<input type="text" class="form-input" placeholder="Digite seu nome" />
</div>
<div class="form-control">
<label for="email">E-mail</label>
<input
type="text"
class="form-input"
placeholder="Digite seu e-mail"
/>
</div>
<div class="form-control">
<label for="password">Senha</label>
<input
type="password"
class="form-input"
placeholder="Digite sua senha"
/>
</div>
<p>
Quer ajuda para criar uma senha segura?
<span id="open-generate-options">Clique aqui.</span>
</p>
<div id="generate-options" class="hide">
<p>Selecione as opções que você deseja</p>
<div class="form-control">
<label for="lenght">Quantidade de caracteres:</label>
<input type="text" name="length" id="length" value="10">
</div>
<div class="form-control">
<label for="letters">Letras:</label>
<input type="checkbox" name="letters" id="letters" checked>
</div>
<div class="form-control">
<label for="numbers">Números:</label>
<input type="checkbox" name="numbers" id="numbers" checked>
</div>
<div class="form-control">
<label for="symbols">Símbolos:</label>
<input type="checkbox" name="symbols" id="symbols" checked>
</div>
<button id="generate-password">Criar senha</button>
</div>
<div id="generated-password">
<p>Aqui está a sua senha:</p>
<h4></h4>
<button id="copy-password">Copiar</button>
</div>
<div class="form-control">
<label for="pass-confirm">Confirmação de Senha</label>
<input
type="password"
class="form-input"
placeholder="Confirme a sua senha"
/>
</div>
<input type="submit" value="Cadastrar" />
</div>
</div>
</body>
</html>