-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
50 lines (41 loc) · 1.29 KB
/
admin.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
<?php
session_start();
include_once('config.php');
if((!isset($_SESSION['email_usuario']) == true) and (!isset($_SESSION['usuario_senha']) == true))
{
unset($_SESSION['email_usuario']);
unset($_SESSION['usuario_senha']);
header('Location: teladelogin.php');
}
$login = $_SESSION['email_usuario'];
?>
<style>
<?php include 'CSS/stylesadmin.css'; ?>
</style>
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet"/>
<title>Khos - Admin</title>
</head>
<body>
<header>
<div id="top">
<div class="topleft">
<a href="index.php"><img src="images/Khos-removebg-preview.png" alt=""></a>
</div><!--topleft-->
<div class="links">
<a href="exit.php">Sair</a>
</div><!--links-->
</div>
</header>
<main>
<a href="user.php">Controle de Usuário</a>
<br>
<a href="soli.php">Controle de Solicitações</a>
</main>
</body>
</html>