-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadministracao.php
45 lines (38 loc) · 930 Bytes
/
administracao.php
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
<?php
session_start ();
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="stylesheet" type="text/css" href="css/menu.css">
<style> a {text-decoration: none;} </style>
</head>
<body>
<div id ="cabecalho">
<div id = "topo">
<h1> Controle de Estoque e Venda </h1>
</div>
<div id="logo">
<img src="imagem/logo.jpg">
</div>
<div id="menu_sair">
<ul><a href="logout.php" class="active">Sair</a></ul>
</div>
</div>
<div id="conteudo_especifico">
<div id="titulo">
<h1> ADMINISTRAÇÃO </h1>
</div>
<!-- Exibe o manu da página -->
<div id="menu_centralizar">
<?php
include "menu_local.php";
?>
</div>
</div>
<div id="rodape">
<h4> Rua Guilherme Poerner, 1795, Blumenau, SC, Brasil </h4>
<h4> 0800 724 2400 </h4>
</div>
</body>
</html>