-
Notifications
You must be signed in to change notification settings - Fork 0
/
tela_inicial.php
144 lines (131 loc) · 4.16 KB
/
tela_inicial.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
session_start();
if($_SESSION['acesso']==""){
header("Location:index.php");
}
if(isset($_SESSION['ifon'])){
echo $_SESSION['ifon'];
unset ($_SESSION['ifon']);
}
include_once 'ConAL.php';
?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<!--Boostrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js" ></script>
<!--FIM Boostrap -->
<meta charset="utf=8">
<meta http-equiv="refresh" content="120">
<title>Tela inicial</title>
<link rel="stylesheet" type="text/css" href="css/es.css">
<link type='image/x-icon' rel='shortcut icon' href='icones/ufamicon.ico'>
<?php
if(isset($_COOKIE["tema"])){
$tema = $_COOKIE["tema"];
}else{
setcookie("tema","a", (time() + (500 * 24 * 3600)));
}
if($_COOKIE["tema"] <> "a"){
echo "<link rel='stylesheet' type='text/css' href='css/$tema.css'>";
}
?>
</head>
<body id="pgini1">
<?php if($_SESSION['acesso']>=2 && $_SESSION['acesso'] < 5){
$result_usuarioa = "SELECT sts,count(sts) FROM mensa WHERE sts LIKE '1' GROUP BY sts";
$resultado_usuarioa = mysqli_query($conn, $result_usuarioa);
$row_usuarioa = mysqli_fetch_assoc($resultado_usuarioa);
$nun_msg = $row_usuarioa['count(sts)'];
if ($nun_msg == ""){
$nun_msg = 0;
}
}
?>
<div id="logoufam" >
<label for="chec">
<img width="100px" height="90px" src="ufam.png"/>
</label>
<label id="insti">Universidade Federal do Amazonas<br>
Pró-Reitoria de Ensino de Graduação<br>
Departamento de Registro Acadêmico<br>
Arquivo Acadêmico<br>
</label>
</div>
<div>
<input type="checkbox" id="chec">
<nav id="nave" >
<ul>
<li><a href="alterar_senha.php">Perfil</a></li>
<li><a href="altera_tema.php">Alterar tema</a></li>
<?php
if ($_SESSION['acesso']>=2){
echo "<li><a href='mult_etq.php'>Gerar etiquetas por matricula</a></li>";
echo "<li><a href='gerador_de_etq.php'>Gerar etiquetas por Condição</a></li>";
}
if ($_SESSION['acesso']==4){
echo "<li><a href='multup.php'>Adicionar documentos</a></li>";
echo "<li><a href='ad_registro.php'>Adicionar registro</a></li>";
}
?>
<li><a href="sair.php">Sair</a></li>
</ul>
</nav>
</div>
<?php
if($_SESSION['acesso']==1){
?>
<span id='mgs_solis'></span>
<script>
$(document).ready(function (){
vrmsg();
});
function vrmsg(){
$.post('funcao_msg_de_solicita.php', function(retorna){
$('#mgs_solis').html(retorna);
});
}
</script>
<?php
}?>
<div id="tela_inicial_tes" >
<!-- <button class="bntv1" id="btntest" onclick="window.location.href='pg_pesquisa.php'">Pesquisa por matrícula</button><br><br>-->
<input type="checkbox" id="check_btn1">
<button class="bntv1" id="btntest"><label for="check_btn1">Pesquisa por matrícula</label></button><br>
<form id="btn_pesquisa_mat" method="Post" action="pg_res_pes_mat.php" enctype="multipart/form-datan">
<input minlength="8" maxlength="9" type="text" name="nume" placeholder="Digite a matrícula" required="">
<input name="pesqui" type="submit" value="Buscar">
</form><br>
<input type="checkbox" id="check_btn2">
<button class="bntv1" id="btntest"><label for="check_btn2">Pesquisa por nome</label></button><br>
<form id="btn_pesquisa_mat2" method="Post" action="psq_nome.php" enctype="multipart/form-datan">
<input type="text" name="nomeaa" placeholder="Digite o nome do aluno" minlength="3" required>
<input name="pesqui" type="submit" value="Buscar">
</form><br>
<?php
if ($_SESSION['acesso']>=2){
$fun = "window.location.href='cor_etq.php'";
echo "<button class='bntv1' onclick=".$fun.">Pesquisar curso</button><br><br>";
echo"<form action='mensa_re.php'>
<button class='bntv1' id='btntest4'>Mensagem[$nun_msg]</button>
</form><br>";
}
if($_SESSION['acesso']==4){
echo"<form action='admini.php'>
<button class='bntv1' id='btntest3'>Ferramentas administrativas</button>
</form><br>";
}
?>
</div>
<?php
if($_SESSION['acesso']<>1){
}
?>
</body>
<footer>
<label >©2019 N.B.O <br>Suporte: [email protected]<label>
</footer>
</html>