-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (56 loc) · 2.5 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Formulário de Clientes</title>
<script src="js/script.js" defer></script> <!--Indica o script na pasta ../scrips/scripts.js-->>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1>Formulário de Clientes</h1>
<div class="container">
<!-- Coluna para o formulário de Cadastrar Cliente -->
<div class="form-col">
<h2>Cadastrar Novo Cliente</h2>
<form id="formCadastro" onsubmit="cadastrarCliente(event)">
<label for="nome">Nome:</label>
<input type="text" id="nome" required>
<label for="email">Email:</label>
<input type="email" id="email" required>
<label for="idade">Idade:</label>
<input type="number" id="idade" required>
<button type="submit">Cadastrar Cliente</button>
</form>
</div>
<!-- Coluna para o formulário de Consultar, Atualizar e Deletar Cliente -->
<div class="form-col">
<h2>Consultar e Deletar Cliente</h2>
<form id="formConsulta">
<label for="idConsulta">ID do Cliente:</label>
<input type="number" id="idConsulta" required>
</form>
<form id="formAtualizar">
<h2>Atualizar Cliente</h2>
<label for="nomeAtualizar">Nome:</label>
<input type="text" id="nomeAtualizar">
<label for="emailAtualizar">Email:</label>
<input type="email" id="emailAtualizar">
<label for="idadeAtualizar">Idade:</label>
<input type="number" id="idadeAtualizar">
<button type="button" onclick="consultarCliente(event)">Consultar </button>
<button type="button" onclick="atualizarCliente(event)">Atualizar </button>
<button type="button" onclick="deletarCliente(event)">Deletar </button>
</form>
</div>
<!-- Coluna Coluna de retorno em JSON -->
<div class="form-col">
<h3>Dados do Cliente JSON </h3>
<h3>Log de Consulta, Atualização e Delete</h3>
<div id="dadosCliente"></div>
<h3>Log de Cadastro</h3>
<div id="resultadoCadastro"></div>
</div>
</div>
</body>
</html>