-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
96 lines (88 loc) · 2.98 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>Braiding Hall</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="java.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<header class="menu-principal">
<main>
<div class="logo">
<img src="logo.jpeg">
</div>
</main>
</header>
<div class="tab">
<button class="tablinks" onclick="selecao(event, 'CadastroCliente')">Cadastro cliente</button>
<button class="tablinks" onclick="selecao(event, 'CadastroSalas')">Cadastro salas de treinamento</button>
<button class="tablinks" onclick="selecao(event, 'CadastroCafe')">Cadastro espaço café</button>
<button class="tablinks" onclick="selecao(event, 'Pesquisa')">Pesquisas</button>
</div>
<div id="CadastroCliente" class="tabcontent">
<h3>Cadastro cliente</h3>
<form>
<label for="Pnome">Nome:</label><br>
<input type="text" id="Pnome" name="Pnome"><br>
<label for="Snome">Sobrenome:</label><br>
<input type="text" id="Snome" name="Snome"><br>
<label>
<input type="button" onclick="cadastrarCliente()" value="enviar">
</label>
</form>
</div>
<div id="CadastroSalas" class="tabcontent">
<h3>Cadastro salas de treinamento</h3>
<form>
<label for="Sala">Nome da Sala:</label><br>
<input type="text" id="Sala" name="Sala"><br>
<input type="number" id="lotacaoS" name="lotacaoS" min="19" max="20"><br>
<label>
<input type="button" onclick="cadastrarNsala()" value="enviar">
</label>
</form>
</div>
<div id="CadastroCafe" class="tabcontent">
<h3>Cadastro espaço café</h3>
<form>
<label for="Ecafe">Espaço Cafe:</label><br>
<input type="text" id="Ncafe" name="Ncafe"><br>
<input type="number" id="lotacaoCf" name="lotacaoCf" min="19" max="20"><br>
<label>
<input type="button" onclick="cadastrarEcafe()" value="enviar">
</label>
</form>
</div>
<div id="Pesquisa" class="tabcontent">
<div class="tab">
<form>
<label>
<label for="Buscacliente">cliente:</label>
<label>
<input type="text" id="txt" onblur="Bcliente()" />
</label>
</label><br>
</form>
<form>
<label>
<label for="Buscarsaladeeventos">Sala de eventos:</label>
<label>
<input type="text" id="txt" onblur="Bsala()" />
</label>
</label><br>
</form>
<form>
<label>
<label for="Buscarespaçocafé">Buscar espaço café:</label>
<label>
<input type="text" id="txt" onblur="Bespaco()" />
</label>
</label><br>
</form>
</div>
</div>
</div>
</body>
</html>