-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormulario_html.html
More file actions
111 lines (111 loc) · 4.6 KB
/
Formulario_html.html
File metadata and controls
111 lines (111 loc) · 4.6 KB
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
<html>
<head>
<script src="js.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<fieldset class="containter-flex">
<legend>Efetuar Registro</legend>
<div class="nome-data">
<div>
<label>Nome:</label><br>
<input type="text" id="nome" />
</div>
<diV class="data">
<label for="dataNascimento">Data nascimento:</label><br>
<input type="date" id="dataNascimento" />
</div>
</div>
<div>
<label>Email:</label><br>
<input type="email" id="email" />
</div>
<div>
<label>Senha:</label><br>
<input type="password" id="senha" />
</div>
<div>
<label>Sexo:</label><br>
<select id='sexo' name='sexo'>
<option>Outros</option>
<option >Feminino</option>
<option selected>Masculino</option>
</select>
</div>
<div>
<label>Telefone Residencial:</label><br>
<input type="tel" id="telefoneResidencial" />
</div>
<div>
<label>Celular:</label><br>
<input type="tel" id="celular" />
</div>
<div>
<label>Fumante:</label><br>
<select id='fumante' name='fumante'>
<option >Não</option>
<option selected>Sim</option>
</select>
</div>
<div>
<label>Municipio de origen:</label><br>
<input type="text" id="municipioOrigem" />
</div>
<div>
<br><button class="button-esquerda" type="button" onclick="limpaCadastro()" value="Cancelar">Cancelar</button>
<button class="button-direita" onclick="cadastrar()" type="button" value="Gravar">Gravar</button>
</div>
</fieldset class="containter-flex">
<fieldset>
<legend>Dados</legend>
<div class="nome-data">
<div>
<label>Nome:</label><br>
<input type="text" id="nomeDados" disabled/>
</div>
<diV class="data">
<label>Data nascimento:</label><br>
<input type="date" id="dataNascimentoDados" disabled/>
</div>
</div>
<div>
<label>Email:</label><br>
<input type="email" id="emailDados" disabled/>
</div>
<div>
<label>Senha:</label><br>
<input type="password" id="senhaDados" disabled/>
</div>
<div>
<label>Sexo:</label><br>
<select id='sexoDados' name='sexo' disabled>
<option>Outros</option>
<option >Feminino</option>
<option selected>Masculino</option>
</select>
</div>
<div>
<label>Telefone Residencial:</label><br>
<input type="tel" id="telefoneResidencialDados" disabled/>
</div>
<div>
<label>Celular:</label><br>
<input type="tel" id="celularDados" disabled/>
</div>
<div>
<label>Fumante:</label><br>
<select id='fumanteDados' name='fumante' disabled>
<option >Não</option>
<option selected>Sim</option>
</select>
</div>
<div>
<label>Municipio de origen:</label><br>
<input type="text" id="municipioOrigemDados" disabled/>
</div>
<div>
<br> <button class="button-esquerda" onclick="limpaDados()" type="button" value="Limpar" >Limpar</button>
</div>
</fieldset>
</body>
</html>