-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadpatrimonio.html
77 lines (74 loc) · 5.13 KB
/
cadpatrimonio.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>SanAgro | Patrimônios</title>
<link rel="stylesheet" href="_css/estilo.css">
<link rel="stylesheet" href="_css/estilo-cadusers.css">
</head>
<script language="javascript" src="_javascript/funcoes.js"></script>
<body>
<div id="interface">
<header id="cabecalho">
<h1>SanAgro</h1>
<nav id="menu-superior">
<ul type="disc">
<li onmouseover="mudaFoto('imagens/symbolmapgreen.png')" onmouseout="mudaFoto('imagens/symbolmapwhite.png')"><a href="index2.html"><b>Mapa</b></a></li>
<li onmouseover="mudaFoto1('imagens/symbolinfogreen.png')" onmouseout="mudaFoto1('imagens/symbolinfowhite.png')"><a><b>Informações Gerais</b></a></li>
<li onmouseover="mudaFoto2('imagens/symbolusergreen.png')" onmouseout="mudaFoto2('imagens/symboluserwhite.png')"><a href="cadusers.html"><b>Usuários e Funcionários</b></a>
<li onmouseover="mudaFoto3('imagens/symbolsafragreen.png')" onmouseout="mudaFoto3('imagens/symbolsafrawhite.png')"><a href="cadsafras.php"><b>Safras</b></a></li>
<li onmouseover="mudaFoto4('imagens/symbolpatrimoniogreen.png')" onmouseout="mudaFoto4('imagens/symbolpatrimoniowhite.png')"><a href="cadpatrimonio.html"><b>Patrimônio</b></a></li>
<li onmouseover="mudaFoto5('imagens/symbolestoquegreen.png')" onmouseout="mudaFoto5('imagens/symbolestoquewhite.png')"><a href="cadinsumos.html"><b>Estoque</b></a></li>
<li onmouseover="mudaFoto6('imagens/symbolfinanceirogreen.png')" onmouseout="mudaFoto6('imagens/symbolfinanceirowhite.png')"><a href="financeiro.html"><b>Financeiro</b></a></li>
<li onmouseover="mudaFoto7('imagens/symbolreportgreen.png')" onmouseout="mudaFoto7('imagens/symbolreportwhite.png')"><a><b>Relatórios</b></a></li>
</ul>
<img id="symbolmap" src="imagens/symbolmapwhite.png" alt="Símbolo mapa" onmouseover="mudaFoto('imagens/symbolmapgreen.png')" onmouseout="mudaFoto('imagens/symbolmapwhite.png')" >
<img id="symboluser"src="imagens/symboluserwhite.png" alt="Simbolo Usuário" onmouseover="mudaFoto2('imagens/symbolusergreen.png')" onmouseout="mudaFoto2('imagens/symboluserwhite.png')">
<img id="symbolinfo"src="imagens/symbolinfowhite.png" alt="Símbolo Info" onmouseover="mudaFoto1('imagens/symbolinfogreen.png')" onmouseout="mudaFoto1('imagens/symbolinfowhite.png')">
<img id="symbolsafra"src="imagens/symbolsafrawhite.png" alt="Símbol Safra" onmouseover="mudaFoto3('imagens/symbolsafragreen.png')" onmouseout="mudaFoto3('imagens/symbolsafrawhite.png')">
<img id="symbolpatrimonio"src="imagens/symbolpatrimoniowhite.png" alt="Símbolo patrimônio" onmouseover="mudaFoto4('imagens/symbolpatrimoniogreen.png')" onmouseout="mudaFoto4('imagens/symbolpatrimoniowhite.png')">
<img id="symbolestoque"src="imagens/symbolestoquewhite.png" alt="Símbol Estoque" onmouseover="mudaFoto5('imagens/symbolestoquegreen.png')" onmouseout="mudaFoto5('imagens/symbolestoquewhite.png')">
<img id="symbolfinanceiro"src="imagens/symbolfinanceirowhite.png" alt="Símbolo Financeiro">
<img id="symbolrelatorio"src="imagens/symbolreportwhite.png" alt="Símbol Relatório" onmouseover="mudaFoto7('imagens/symbolreportgreen.png')" onmouseout="mudaFoto7('imagens/symbolreportwhite.png')">
</nav>
</header>
<aside id="menu-lateral">
<header>
<h2>Cadastros</h2>
</header>
<section id="botoes">
<li><a href="">Novo Patrimônio</a></li>
</section>
</aside>
<aside id="right">
<form id="formuser" action="_php/cadpatrimonio.php" method="POST">
<header id="headerusers">
<p><b>Cadastro de Patrimônios</b></p>
</header>
<section id="body">
<p>Código:<input type="number" id="cCod" name="tCod" size="6"min="0" max="99999"></p>
<p>Nome:<input type="text" id="cNomeP" name="tNomeP" size="45"></p>
<p><label for="tArea">Tipo:</label>
<select name="ctipo" id="tTipo">
<option value="veiculo">Veículo</option>
<option value="maquinario">Maquinário</option>
<option value="Silo">Silo</option>
<option value="Pivôs">Pivôs</option>
</select>
</p>
<p>Detalhes: <input type="text" name="cDet" id="tDet"></p>
<p>Data de Aquisição: <input type="date" id="cDa" name="tDa" size="20"></p>
<p>Valor(R$): <input type="number" name="cV" id="tV" size="20"></p>
<input id="buttons" class="cad" type="submit" value="Cadastrar">
<input id="buttons" type="submit" value="Editar">
<input id="buttons" type="submit" value="Excluir">
</section>
</form>
</aside>
<footer id="rodape">
<p>Developed by Joevitor Sant'Ana</p>
<p>Junho 2021</p>
</footer>
</div>
</body>
</html>