-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
73 lines (71 loc) · 2.3 KB
/
cadastro.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bel viagens | Cadastro</title>
<link rel="stylesheet" href="login.css" />
<link rel="stylesheet" href="cadastro.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=Roboto&display=swap"
rel="stylesheet"
/>
</head>
<body>
<main>
<img src="./midia/airport-animate.svg" alt="airport-animate" />
<form action="viagens.html" method="get">
<h1 class="cadastro_h1">Cadastre-se!</h1>
<div>
<label for="name">Seu nome:</label>
<input type="text" placeholder=" Seu nome" id="name" autofocus />
</div>
<div>
<label for="sobrenome">Seu Sobrenome:</label>
<input type="text" placeholder="Seu sobrenome" id="sobrenome" />
</div>
<div>
<label for="data-de-nascimento"> Data de Nascimento:</label>
<input type="date" name="date" id="data-de-nascimento" />
</div>
<div>
<label for="email"> Email:</label>
<input type="email" id="email" placeholder="Seu email" required />
</div>
<div>
<label for="confirmacao-email"> Confirme seu Email: </label>
<input
type="email"
placeholder="Confirme seu email"
id="confirmacao-email"
/>
</div>
<div>
<label for="senha">Senha:</label>
<input
type="password"
id="senha"
placeholder="Sua senha"
maxlength="12"
title="sua senha deve ter 12 caracteres"
required
/>
</div>
<div>
<label for="confirmar-senha">Confirme sua senha:</label>
<input
type="password"
id="confirmar-senha"
placeholder="Confirme sua senha"
maxlength="12"
title="sua senha precisa ser igual ao formulário anterior"
required
/>
</div>
<input type="submit" value="entrar" class="enviar" />
</form>
</main>
</body>
</html>