-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboletim.php
96 lines (68 loc) · 2.57 KB
/
boletim.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php
require_once "conex.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/estilosecretaria.css">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<style>
.impr{
cursor: pointer;
text-align: center;
background-color: #003056;
background-position: 205px center; /*Posição da imagem do background*/
width: 30%; /* Tamanho do select, maior que o tamanho da div "div-select" */
height:48px; /* altura do select, importante para que tenha a mesma altura em todo os navegadores */
font-family:Arial, Helvetica, sans-serif; /* Fonte do Select */
font-size:18px; /* Tamanho da Fonte */
border: none;
padding:13px 20px 13px 12px; /* Configurações de padding para posicionar o texto no campo */
color:#fff; /* Cor da Fonte */
text-indent: 0.01px; /* Remove seta padrão do FireFox */
text-overflow: ""; /* Remove seta padrão do FireFox */
select:-ms-expand {display: none;} /* Remove seta padrão do IE*/
}
</style>
</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>
<table>
<td><a href="logout.php" class="sair">Sair</a>
<form method="post" action="alterarSenha.php"><input type="submit" id="botao1" value="Alterar Senha"><input type="hidden" name="Page" value="<?=basename( __FILE__ );?>"></form> </td></table>
</nav>
</div>
<h1 style="padding-left: 55px;"> Olá, <?php echo $_SESSION['UsuarioNome']; ?> </h1>
</header>
<br><br><br><br>
<!--Fim-->
<center>
<select class="impr" onchange="location = this.value;">
<option><h1>Escolha o tipo de Boletim</h1></option>
<option value="escolhaAluno.php"> Individual </option>
<option value="escolhaTurma.php"> Turma Inteira </option>
</select>
<br><br>
<center> <a href="bturma.php"><img src="img/voltar111.png"</a></a>
</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>