-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaula161Cadastrar.html
More file actions
41 lines (41 loc) · 1.92 KB
/
aula161Cadastrar.html
File metadata and controls
41 lines (41 loc) · 1.92 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
<!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">
<meta name= "description" content="códigos html,css e java script da aula () do curso de java script completo e profissional da cbs cursos">
<meta name="keywords" content="HTML, CSS, JavaScript, api">
<title>Cadastrar Aula 161</title>
<link rel="stylesheet" content="text/css" href="aula161.css" />
</head>
<body id="cadastrar">
<div id="div_cadastrar" name="div_cadastrar" class="div_cadastrar">
<!-- <div id="divId" name="divId" class="divCampos">
<label>Id</label>
<input id="meid" name="meai" class="maskEdit" type="number"/>
</div>-->
<div id="divNome" name="divNome" class="divCampos">
<label>Nome</label>
<input id="meNome" name="meNome" class="maskEdit" type="text"/>
</div>
<div id="divTelefone" name="divTelefone" class="divCampos">
<label>Celular</label>
<input id="meTelefone" name="meTelefone" class="maskEdit" type="text"/>
</div>
<div id="divEmail" name="divEmail" class="divCampos">
<label>E-mail</label>
<input id="meEmail" name="meEmail" class="maskEdit" type="text"/>
</div>
<div id="divNascimento" name="divNascimento" class="divCampos">
<label>Nascimento</label>
<input id="meNascimento" name="meNascimento" class="maskEdit" type="date"/>
</div>
</div>
<div id="divBotoes" name="divBotoes" class="divBotoes">
<input id="btnInserir" name="btnInserir" class="btnCad" type="button" value='Gravar'/>
<input id="btnCancelar" name="btnCancelar" class="btnCad" type="button" value='Cancelar'/>
</div>
</body>
<script src="./aula161Cadastrar.js" type="module"></script>
</html>