-
Notifications
You must be signed in to change notification settings - Fork 0
/
2tela_aluno.php
76 lines (47 loc) · 1.51 KB
/
2tela_aluno.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
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
if (!isset($_SESSION)) session_start();
$nivel_necessario = 3;
if (!isset($_SESSION['UsuarioID']) OR ($_SESSION['UsuarioNivel'] != $nivel_necessario)) {
session_destroy();
header("Location: index.php"); exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<title> Bem vindo, <?php echo $_SESSION['UsuarioNome']; ?> </title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="css/estilo2telaaluno.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
</head>
<body>
<!--Cabeçalho-->
<header class="header-fixed">
<div class="header-limiter">
<h1><a href="#" style="pointer-events: none;"><img src="img/faetec1.png"></a></h1>
<nav>
<a href="logout.php" class="sair">Sair</a>
</nav>
</div>
<h1 style="padding-left: 55px;"> Olá, <?php echo $_SESSION['UsuarioNome']; ?> </h1>
</header>
<br><br><br><br>
<!--Fim-->
<center><div class="corpo">
<div class="icones">
<table>
<a href="aluno.php"><img src="img/editaraluno.png" id="editaraluno" ></a>
<a href="calunos.php"><img src="img/adicionaraluno.png" id="adicionaraluno"></a>
<a href="secretaria.php"><img src="img/voltar1.png" id="adicionaraluno"></a>
<table>
</div>
</div></center>
<footer class="footer-distributed">
<div class="footer-center">
<center><img src="img/logo1.png"></center>
<br>
<center><p class="footer-company-name">Octa © 2017</p></center>
</div>
</footer>
</body>
</html>