-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcadastro.html
More file actions
73 lines (62 loc) · 2.29 KB
/
cadastro.html
File metadata and controls
73 lines (62 loc) · 2.29 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro de Cliente e Pet</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="header-container">
<img src="/img/pet-hotel_10753981 (1).png" alt="Logo">
<nav>
<ul>
<li><a href="index.html">Página Inicial</a></li>
<li><a href="cadastro.html">Cadastro de Pet</a></li>
<li><a href="agendar.html">Reservar Hospedagem</a></li>
<li><a href="consultar.html">Consulta de Reservas</a></li>
<li><a href="atualizar.html">Atualizar/Remover Reserva</a></li>
</ul>
</nav>
</div>
</header>
<div class="container">
<div>
<h1>Cadastro de Pet e Tutor</h1>
<form id="formulario">
<label for="nome-pet">Nome do Pet:</label>
<input type="text" id="nome-pet" name="nome-pet" >
<label for="especie">Espécie:</label>
<input type="text" id="especie" name="especie" >
<label for="raca">Raça:</label>
<input type="text" id="raca" name="raca" >
<label for="idade">Data de Nascimento do Pet:</label>
<input type="date" id="dataNascimento" name="dataNascimento" >
<label for="sexo">Sexo:</label>
<select id="sexo" name="sexo" >
<option>Selecione</option>
<option value="macho">Macho</option>
<option value="femea">Fêmea</option>
</select>
<label for="porte">Porte:</label >
<select id="porte" name="porte">
<option value="">Selecione</option>
<option value="pequeno">Pequeno</option>
<option value="medio">Médio</option>
<option value="grande">Grande</option>
</select>
<label for="cpf">CPF do Tutor:</label>
<input type="text" id="cpf" name="cpfCliente" >
<label for="peso">Peso:</label>
<input type="number" id="peso" name="peso" step="5" >
<label for="observacoes">Observações:</label>
<textarea id="observacoes" name="observacoes" rows="3"></textarea >
<button type="submit">Cadastrar</button>
</form>
</div>
</div>
</div>
</body>
<script src="js/cadastrarPet.js"></script>
</html>