-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
76 lines (46 loc) · 1.88 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<title>Cadastro</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="form.css">
</head>
<body>
<h1>Cadastro</h1>
<form>
<fieldset>
<h1>Dados Pessoais:</h1>
<label for="nome">Nome:</label><br>
<input type="text" id="nome" name="nome"><br>
<input type="file" name="imagem">
<label for="rg">RG:</label><br>
<input type="text" id="rg" name="rg"><label for="sexo">Sexo:</label> <input type="radio"section>Masculino</section>
<input type="radio"section>Feminino</section>
<input type="radio"section>Outro</section>
<label for="CPF">CPF:</label><br>
<input type="text" id="cpf" name="cpf"><br>
<label for="datanasc">Data de Nascimento:</label><br>
<input type="date" id="datanasc" name="nascimento"><br>
<label for="endereço">Endereço:</label><br>
<input type="text" id="endereco" name="endereço"><br>
<label for="cep">CEP:</label><br>
<input type="text" id="cep" name="cep"><br>
<label for="bairro">Bairro:</label><br>
<input type="text" id="bairro" name="bairro"><br>
<label for="rua">Rua:</label><br>
<input type="text" id="rua" name="rua"><br>
<label for="nro">Numero:</label><br>
<input type="int" id="nro" name="nro"><br>
<label for="cidade">Cidade:</label><br>
<input type="text" id="cidade" name="cidade"><br>
<label for="telefone">Telefone:</label><br>
<input type="tel" id="telefone" name="telefone"><br>
<label for="celular">Celular:</label><br>
<input type="text" id="cllr" name="celular"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br>
<input type="submit" value="Cadastrar">
<input type="submit" value="Apagar">
</fieldset>
</form>
</body></html>