-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (52 loc) · 2.23 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
<!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">
<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=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/style.css">
<script src="js/script.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" name="name" id="name" placeholder="Digite o seu nome">
</div>
<div class="form-control">
<label for="email">E-mail</label>
<input type="text" name="email" id="email" placeholder="Digite o seu e-mail">
</div>
<div class="form-control">
<label for="password">Senha</label>
<input type="password" name="password" id="password" placeholder="Digite a sua senha">
</div>
<div id="generated-password">
<p>Aqui está a sua senha:</p>
<h4></h4>
</div>
<p>
Quer ajuda para criar uma senha segura?
<span id="generate-password">Clique aqui.</span>
</p>
<div class="form-control">
<label for="confirmpassword">Confirmação de senha</label>
<input type="password" name="confirmpassword" id="confirmpassword" placeholder="Confirme a sua senha">
</div>
<input type="submit" value="Cadastrar" />
</div>
</div>
</body>
</html>