-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhome.php
63 lines (45 loc) · 960 Bytes
/
home.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
55
56
57
58
59
60
61
62
63
<?php
session_start();
$msg = isset($_GET['msg']) ? $_GET['msg'] : 0;
if(!isset($_SESSION['email'])){
header('Location: index.php');
}
?>
<!DOCTYPE HTML>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<?php
require_once("head.php");
?>
<title>Início</title>
<link rel="icon" href="imagens/favicon.png">
</head>
<body class="branco">
<?php
require_once("menu.php");
?>
<div style="position: absolute;">
<?php
if($msg != 0){
echo "
<META HTTP-EQUIV=REFRESH CONTENT = '2;URL=home.php'>
<script type=\"text/javascript\">
alert(\"Logado com Sucesso!\");
</script>
";
}
?>
</div>
<?php
require_once("slider.php");
?>
<!--<div class="container espaco">
<div class="capa">
<div class="texto-capa">
</div>
</div>
</div> -->
<script src="bootstrap/js/bootstrap.min.js"></script>
</body>
</html>