-
Notifications
You must be signed in to change notification settings - Fork 1
/
adm.php
54 lines (52 loc) · 1.99 KB
/
adm.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
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<title>Emperium Street Wear</title>
<meta name="Author" content="Marcus Vinicius">
<link rel="icon" href="./Logos/Logotipo Escuro.png">
<!-- CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="estilo.css">
</head>
<body>
<?php
session_start();
if(empty($_SESSION['Status']) || $_SESSION['Status'] != 1){
header('location:index.php');
}
include 'conexao.php';
include 'nav.php';
include 'cabecalho.html';
?>
<div class="container-fluid">
<div class="row">
<div class="col-sm-4 col-sm-offset-4 text-center">
<h1 style="font-size:2.3vw; color: #000; text-shadow: 1px 1px 0px #fdeb00; letter-spacing: 5px;">ÁREA ADMINISTRATIVA</h1>
<br>
<a href="formProduto.php" style="text-decoration:none;">
<button type="submit" class="btn btn-block btn-lg btn-primary"> Incluir Produto</button>
</a>
<br>
<a href="lista.php" style="text-decoration:none;">
<button type="submit" class="btn btn-block btn-lg btn-warning"> Alterar / Excluir Produto</button>
</a>
<br>
<button type="submit" class="btn btn-block btn-lg btn-success"> Vendas</button>
<br>
<a href="sair.php" style="text-decoration:none;">
<button type="submit" class="btn btn-block btn-lg btn-danger"> Sair da àrea administrativa</button>
</a>
</div>
</div>
</div>
<br>
<br>
<?php include 'rodape.html' ?>
</body>
</html>