| Server IP : 20.75.53.88 / Your IP : 216.73.217.72 [ Web Server : Apache System : Linux VMRALP-3 4.4.0-256-generic #290~14.04.1-Ubuntu SMP Thu Jun 20 09:24:50 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29+esm15 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, Domains : 3 Domains MySQL : ON | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/portais/cmdev/admin/ |
Upload File : |
<?php
session_start();
if (isset($_GET["act"])=="logout") {
unset($_SESSION['login']);
unset($_SESSION['password']);
session_destroy();
}
ini_set('display_errors', 'off');
include_once("../conexaoBanco.php");
include_once("aviso.php");
$conn = conexao::getInstance();
$prefeitura = $conn->query("select * from prefeitura");
$cliente = $prefeitura->fetch(PDO::FETCH_OBJ);
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Portal Admin | Login</title>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="icon" href="dist/img/logos_gt/favicon.ico"/>
<meta property="og:site_name" content="Portal Admin"/>
<meta property="og:title" content="Portal Admin">
<meta property="og:description" content="Administração Portal Prefeitura">
<meta property="og:image" content="https://www.gtcontroller.com.br/mailing/sistemas/img/icone.jpg">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.gtcontroller.com.br/protocolo/dev_new">
<meta property="og:locale" content="pt_BR"/>
<ToDO Barra mobile>
<!--cor da barra mobile-->
<meta name="theme-color" content="#00AFEF"/>
<meta name="apple-mobile-web-app-status-bar-style" content="#00AFEF">
<meta name="msapplication-navbutton-color" content="#00AFEF">
<!--end cor da barra mobile-->
</ToDO>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="stylesheet" href="../assets/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/css/custom-red.css">
<link rel="stylesheet" href="../assets/css/AdminLTE.css">
<link rel="stylesheet" href="../assets/css/style.css">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" href="dist/css/style.css">
<!-- Google Font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic">
</head>
<body class="login-page">
<div class="agile-login">
<div class="wrapper">
<h2>Portal Admin</h2>
<h5><?php echo $cliente->nome ?></h5>
<div class="w3ls-form">
<form method="post" action="loga.php" id="formlogin" name="formlogin">
<label>Usuário</label>
<input type="text" name="txt_usuario" required/>
<label>Senha</label>
<input type="password" name="txt_senha" required/>
<!--<a href="#" class="pass">Forgot Password ?</a>-->
<input type="submit" value="Acessar sistema"/>
</form>
</div>
<div class="agile-icons">
<a href="https://www.facebook.com/gtcontroller" target="_blank"><span class="fa fa-facebook"></span></a>
<a href="https://www.instagram.com/gtcontroller" target="_blank"><span class="fa fa-instagram"></span></a>
<a href="https://www.twitter.com/gtcontroller" target="_blank"><span class="fa fa-twitter" aria-hidden="true"></span></a>
</div>
</div>
<br>
<!-- <div class="copyright">-->
<!-- <p><a href="http://www.gtcontroller.com.br" target="_blank">© 2018 G&T Controller</a></p>-->
<!-- </div>-->
</div>
</body>
</html>