-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCadastro.html
116 lines (102 loc) · 5.04 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Cadastro</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css2?family=Lora" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Rubik" rel="stylesheet">
<style type="text/css">
#linhaEnder {
height: 50px;
}
#inpEnder {
width: 394px;
height: 80px;
}
</style>
</head>
<body>
<header>
<img src="Imagens/PakiLogoTopo.png" class="imgLogo" alt="Logo Elefante PakiMemo">
<adress class="ender">
Rua do Paço do Elefantinho, 123<br>
Tel: (21) 4321-5678<br>
<a href="mailto:contato@paquiderme.com.br">contato@paquiderme.com.br</a>
</adress>
</header>
<nav>
<ul>
<li><a href="PakiMemo.html" target="_blank">INICIAL</a></li>
<li><a href="Memorias.html" target="_blank">MEMÓRIAS</a></li>
<li><a href="Discos.html" target="_blank">HDs / SSDs</a></li>
<li><a href="Cadastro.html" target="_blank">CADASTRO</a></li>
<li><a href="Compras.html" target="_blank">COMPRAS</a></li>
</ul>
</nav>
<section>
<form class="FormBox">
<legend>Cadastro</legend>
<fieldset class="FSLinhaInteira">
<legend>Identificação</legend>
<div class="LinhaForm">
<label for="email" class="LabBox">E-mail:</label>
<input type="email" id="email" name="email" class="InpBoxGnd" required>
</div>
<div class="LinhaForm">
<div class="ColEsq">
<label for="senha" class="LabBox">Senha:</label>
<input type="password" id="senha" name="senha" class="InpBoxMed" required>
</div>
<div class="ColDir">
<label for="confirmacao" class="LabBox">Confirme:</label>
<input type="password" id="confirmacao" name="confirme" class="InpBoxMed" required>
</div>
</div>
</fieldset>
<fieldset class="FSLinhaInteira">
<legend>Dados Pessoais</legend>
<div class="LinhaForm">
<label for="nome" class="LabBox">Nome:</label>
<input type="text" id="nome" name="nome" class="InpBoxGnd" required>
</div>
<div class="LinhaForm" id="linhaEnder">
<label for="endereco" class="LabBox">Endereço:</label>
<textarea id="endereco" class="InpBoxGnd" id="inpEnder" required></textarea>
</div>
<div class="LinhaForm">
<div class="ColEsq">
<label for="telefone" class="LabBox">Telefone:</label>
<input type="tel" id="telefone" name="telefone" class="InpBoxMed">
</div>
<div class="ColDir">
<label for="celular" class="LabBox">Celular:</label>
<input type="tel" id="celular" name="celular" class="InpBoxMed" required>
</div>
</div>
<fieldset class="FSColEsq">
<legend>Nascimento:</legend>
<label for="dia"></label>
<input type="number" id="dia" name="dianascimento" class="numDD" min="01" max="31" required>
<label for="mes">/</label>
<input type="number" id="mes" name="mesnascimento" class="numDD" min="01" max="12" required>
<label for="ano">/</label>
<input type="number" id="ano" name="anonascimento" class="numQD" min="1900" max="2022" required>
</fieldset>
<fieldset class="FSColDir">
<legend>Sexo:</legend>
<input type="radio" id="m" name="sexo" value="masculino">
<label for="m">Mas</label>
<input type="radio" id="f" name="sexo" value="feminino">
<label for="f">Fem</label>
<input type="radio" id="outro" name="sexo" value="outro" checked>
<label for="outro">Outro</label>
</fieldset>
</fieldset>
<div class="botoes">
<input type="submit" name="cadastrar" value="Cadastrar">
<input type="reset" name="enviar" value="Limpar">
</div>
</form>
</section>
</body>
</html>